示例#1
0
def test_error():
    """
    you should get an TypeError if you try to add something other than numbers
    """
    try:
        print cy_add_c.add('this', 5)
        assert False # shouldn't get here!
    except TypeError:
        # should have gotten an exception
        pass
示例#2
0
def test_2():
    assert cy_add_c.add(5, 6) == 11
示例#3
0
def test_1():
    assert cy_add_c.add(3, 4) == 7