Advertisement
Guest User

Untitled

a guest
Jun 28th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. [Then("the result on the display should be '(.*)'")]
  2. public void ThenTheResultOnTheDisplayShouldBe(int expectedResult)
  3. {
  4. int actualResult = this.calculator.Display;
  5.  
  6. Assert.AreEqual(actualResult, expectedResult);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement