Skip to content

Commit

Permalink
add pending step to the VS item template
Browse files Browse the repository at this point in the history
  • Loading branch information
gasparnagy committed Nov 19, 2009
1 parent e6fe054 commit f4d7955
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,24 @@ public void GivenIHaveEnteredSomethingIntoTheCalculator(int number)
// To use the multiline text or the table argument of the scenario,
// additional string/Table parameters can be defined on the step definition
// method.

ScenarioContext.Current.Pending();
}

[When("I press add")]
public void WhenIPressAdd()
{
//TODO: implement act (action) logic

ScenarioContext.Current.Pending();
}

[Then("the result should be (.*) on the screen")]
public void ThenTheResultShouldBe(int result)
{
//TODO: implement assert (verification) logic

ScenarioContext.Current.Pending();
}
}
}

0 comments on commit f4d7955

Please sign in to comment.