vstest.console.exe ListTests with FullyQualifiedName
问题 /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: You can use following command: vstest.console a.dll /ListFullyQualifiedTests /ListTestsTargetPath:Tests.txt 来源: https://stackoverflow.com/questions/44569883/vstest-console-exe-listtests-with-fullyqualifiedname