Skip to content

Instantly share code, notes, and snippets.

@okaminu
Created March 18, 2021 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save okaminu/e5bb810dc2695437e23654da90e0bf8f to your computer and use it in GitHub Desktop.
Save okaminu/e5bb810dc2695437e23654da90e0bf8f to your computer and use it in GitHub Desktop.
Feature: Chicken Collecting Insects Calculator
Scenario Outline:
Given a chicken collects <insectsPerMinute> insects per minute
When chicken has searched insects for <minutes> minutes
Then the chicken has found <foundInsects> insects
Examples:
| insectsPerMinute | minutes | foundInsects |
| 3 | 5 | 15 |
| 2 | 120 | 240 |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment