1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
def add(a, b):
    return u'%s' % (a + b)

def test_add():
    # GIVEN: Two numbers
    x = 10
    y = 5

    # WHEN: The add() method is called with the two numbers
    result = add(x, y)

    # THEN: The result should be 15
    assert result == 15