예제 #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