Я использую Specflow (http://specflow.org/), чтобы написать некоторые интеграционные тесты, и я бы хотел запустить один сценарий. Есть ли способ запустить один сценарий с помощью Resharper 6? BTW Я настроил 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.....
Я хочу запустить только первый сценарий.