我正在使用Specflow(http://specflow.org/)编写一些集成测试,并且我想运行一个场景。有什么办法可以使用Resharper 6运行单个方案?顺便说一句,我将specflow配置为使用MSTest。

我的Specflow测试看起来像:

Feature: Customer management

Scenario: Add a new Customer into system
    Given the User has entered the customer with the following data
    | name  | last_name | birthday   |
    | Peter | Stein     | 12.09.1955 |
    When the User has pressed the Save Button
    Then the following customer should be stored in the data base
    | name  | last_name | birthday   |
    | Peter | Steim    | 12.09.1955 |

Scenario: Second scenario.....

Scenario: Third scenario.....

我只想运行第一种情况。

最佳答案

如果您使用的是我的ReSharper,则只需打开功能文件,然后在方案中的任意位置单击鼠标右键,然后从弹出菜单中选择“运行Specflow方案”。它仅运行您所处的一种情况。

请注意,我正在使用ReSharper来运行测试。

关于bdd - 如何在Resharper中运行单个Specflow方案,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9470364/

10-17 00:44