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