def test_add_negative():
    assert add(-1, 2) == 1
def test_add_normal():
    assert add(1, 2) == 3
    assert add(10, 15) == 25