Created
August 13, 2012 15:54
-
-
Save woodybrood/3342125 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feature: Simple Multiplication | |
Scenario: Multiplying Two Numbers | |
Given I launch the app | |
Then I should see a Result of 0 | |
When I enter 75 | |
And I enter 3 | |
And I tap * | |
Then I should see a Result of 225 | |
Scenario: Multiplying Three Numbers | |
When I enter 3 | |
And I enter 4 | |
And I enter 5 | |
And I tap * | |
Then I should see a Result of 20 | |
And I tap * | |
Then I should see a Result of 60 | |
Scenario: Multiplying Three Numbers in a different order | |
When I enter 3 | |
And I enter 4 | |
And I tap * | |
Then I should see a Result of 12 | |
And I enter 5 | |
And I tap * | |
Then I should see a Result of 60 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment