2

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

Cirate
  • 151
  • 1
  • 8

1 Answers1

2

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

Satya Madala
  • 325
  • 3
  • 8