Feature: Calculations @RequiresAuthentication Scenario Outline: Calculations endpoint returns the correct results Given first number is set to And second number is set to And operation is When I calculate the result Then the result should be Examples: | number1 | number2 | operation | calculation | | 2 | 2 | ADD | 4 | | 1 | 5 | ADD | 6 | | 2 | 2 | SUBTRACT | 0 | | 1 | 5 | SUBTRACT | -4 |