示例#1
0
文件: test_runner.py 项目: Xion/pyqcy
def addition_fail(
    x=int_(min=0), y=int_(min=0)
):
    the_sum = x + y
    assert the_sum >= x and the_sum < y
示例#2
0
文件: test_runner.py 项目: Xion/pyqcy
def addition_success(
    x=int_(min=0), y=int_(min=0)
):
    the_sum = x + y
    assert the_sum >= x and the_sum >= y