Feature: addition_2

    A complex sum feature with some testcase

    Scenario: 1 + 2

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


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

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