vstest.console.exe ListTests with FullyQualifiedName

1k Views Asked by At

/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.

1

There are 1 best solutions below

0
Satya Madala On

You can use following command:
vstest.console a.dll /ListFullyQualifiedTests /ListTestsTargetPath:Tests.txt