def multiply(self, a, b): self.Result = Multiplication.multiply(a, b) return self.Result
def test_MO_mul(self): self.assertEqual(2, Multiplication.multiply(1, 2))
def Product(self, a, b): self.Result = Multiplication.product(a, b) return self.Result
def test_MathOperations_Multiplication(self): self.assertEqual(4, Multiplication.product(2, 2))