/ListTests option of vstest is returning a list of test method names inside a dll.
Is there a way to return a list of FullyQualifiedNames?
So instead of getting TestMethodName I would like to receive NamespaceName.ClassName.TestMethodName.
/ListTests option of vstest is returning a list of test method names inside a dll.
Is there a way to return a list of FullyQualifiedNames?
So instead of getting TestMethodName I would like to receive NamespaceName.ClassName.TestMethodName.
You can use following command:
vstest.console a.dll /ListFullyQualifiedTests /ListTestsTargetPath:Tests.txt