我正在使用 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.....
我只想运行第一个场景。