【发布时间】:2022-01-21 03:31:15
【问题描述】:
我有场景大纲示例,我想跳过一个或多个示例
Scenario Outline :
Given user is using <app>
Then user is logged in
Examples:
|app |
|test |
|local|
如何在这里跳过“测试”的运行?
使用 specflow - 3.* 和 nunit 作为运行器
感谢您的帮助!!
在步骤定义文件中
If(app=="test")
//skip the run for this condition
else
run for others
【问题讨论】:
标签: c# visual-studio cucumber specflow scenarios