def test_multiplication(self):
     assert multiply.compute(3, 4) == 12
 def test_multiplication(self):
     assert multiply.compute(3,4) == 12
Exemple #3
0
def main (a, b):
    mult = multiply.compute (a,b)
    print ("multiplication of %s and %s is: %s" % (a, b, mult))