Feature: addition_1

    Just a simple sum feature with some testcase

    Scenario: 1 + 1

        Given we have two numbers: 1 and 1
        When we sum the numbers
        Then the result is: 2


    Scenario: 2 + 2
        Same as above just now with 2+2

        Given we have two numbers: 2 and 2
        When we sum the numbers
        Then the result is: 4