CucumberOptions Java 命令行
CucumberOptions Java command line
我正在尝试过滤我的测试套件中的功能。
我需要指定 features/folders 黄瓜应该 运行 的功能。
我运行宁愿使用命令行,指定单个功能路径工作正常:
-D cucumber.options="features/Login.feature"
但我无法通过多个 features/paths,我尝试了很多方法,例如:
-D cucumber.options="features/Login.feature, features/sub_folder"
但它失败了,我很清楚标签可以过滤哪些场景到 运行 或不过滤,但是如果我可以传递 features/folders 具有黄瓜应该具备的功能,那将对我的特殊情况大有裨益收下,谢谢
通过反复试验找到答案:
文件夹功能的路径之间不需要逗号 (',')。
工作示例:
-D cucumber.options="features/Login.feature features/sub_folder"
我正在尝试过滤我的测试套件中的功能。
我需要指定 features/folders 黄瓜应该 运行 的功能。
我运行宁愿使用命令行,指定单个功能路径工作正常:
-D cucumber.options="features/Login.feature"
但我无法通过多个 features/paths,我尝试了很多方法,例如:
-D cucumber.options="features/Login.feature, features/sub_folder"
但它失败了,我很清楚标签可以过滤哪些场景到 运行 或不过滤,但是如果我可以传递 features/folders 具有黄瓜应该具备的功能,那将对我的特殊情况大有裨益收下,谢谢
通过反复试验找到答案:
文件夹功能的路径之间不需要逗号 (',')。
工作示例:
-D cucumber.options="features/Login.feature features/sub_folder"