def test_simple_mult():
    assert simple_math.simple_mult(7, 6) == 42
Esempio n. 2
0
def test_simple_mult():
    assert simple_math.simple_mult(3, 5) == 15
Esempio n. 3
0
def test_mult():
    assert simple_math.simple_mult(2, 2) == 4
Esempio n. 4
0
def test_simple_mult():
    assert simple_math.simple_mult(1, 2) == 2
def test_simple_mult():
    assert simple_math.simple_mult(2, 3) == 6
Esempio n. 6
0
def test_simple_mult():
    assert sm.simple_mult(1, 1) == 1
Esempio n. 7
0
def test_mult():
    assert sm.simple_mult(3, 4) == 12
def test_simple_mult():
    assert sm.simple_mult(3, 3) == 9
Esempio n. 9
0
def test_simple_math_simple_mult():
    assert simple_math.simple_mult(5, 5) == 25