示例#1
0
def test_multiply():
    x = multiply(2, 2)
    assert x == 4
def test_multiply():
    assert multiply(2, 2) == 4
示例#3
0
def test_compute_multiply():
    total = compute.multiply(4, 3)
    assert total == 12