如何从命令提示符执行 Specflow 中的所有特征文件?以及如何执行多个特征文件(即 2 个特征文件)?
How to execute all the feature files in Specflow from command prompt? And how to execute multiple feature files(i.e. 2 feature files )?
目前我正在按照以下语法从命令提示符 运行 一个功能文件并且它工作正常
C:\Users\xxxx\Desktop\xxxxx\packages\NUnit.ConsoleRunner.3.10.0\tools\nunit3-console.exe
"C:\Users\xxxxx\Desktop\xxxx\UnitTestProject3\bin\Debug\TestAutomationV1.dll" --where "Description=='Reports' and cat==regression"
您必须为您想要 运行 的两个(所有)功能文件提供一个公共标签,并从命令的 where 子句中删除 "Description" 属性。
目前我正在按照以下语法从命令提示符 运行 一个功能文件并且它工作正常
C:\Users\xxxx\Desktop\xxxxx\packages\NUnit.ConsoleRunner.3.10.0\tools\nunit3-console.exe
"C:\Users\xxxxx\Desktop\xxxx\UnitTestProject3\bin\Debug\TestAutomationV1.dll" --where "Description=='Reports' and cat==regression"
您必须为您想要 运行 的两个(所有)功能文件提供一个公共标签,并从命令的 where 子句中删除 "Description" 属性。