コード例 #1
0
def test_add4():
    """ test case to validate two positive numbers"""
    assert add(-10, -5) == -15
コード例 #2
0
def ttest_typeerror1():
    """ test case to check if we can handle non number input"""
    with pytest.raises(TypeError):
        add('a', 5)
コード例 #3
0
def test_add(x, y, ans):
    """ test case to validate two positive numbers"""
    assert add(x, y) == ans