Question: def test_addition(self):self.math = Math()self.assertEqual(self.math.addition(3, 4), 7)self.assertEqual(self.math.addition(-6, -5), -11)self.assertEqual(self.math.addition(-6, 4), -2)def test_subtraction(self):self.math = Math()self.assertEqual(self.math.subtraction(3, 4), -1)self.assertEqual(self.math.subtraction(-6, -5), -1)self.assertEqual(self.math.subtraction(-6, 4), -10)def test_multiplication(self):self.math = Math()self.assertEqual(self.math.multiplication(3, 4), 12)self.assertEqual(self.math.multiplication(-6, -5),

def test_addition(self):self.math = Math()self.assertEqual(self.math.addition(3, 4), 7)self.assertEqual(self.math.addition(-6, -5), -11)self.assertEqual(self.math.addition(-6, 4), -2)def test_subtraction(self):self.math = Math()self.assertEqual(self.math.subtraction(3, 4), -1)self.assertEqual(self.math.subtraction(-6, -5), -1)self.assertEqual(self.math.subtraction(-6, 4), -10)def test_multiplication(self):self.math = Math()self.assertEqual(self.math.multiplication(3, 4), 12)self.assertEqual(self.math.multiplication(-6, -5), 30)self.assertEqual(self.math.multiplication(-6, 4), -24)def test_division(self):self.math = Math()self.assertEqual(self.math.division(3, 4), 0.75)self.assertEqual(self.math.division(-6, -5), 1.2)self.assertEqual(self.math.division(-6, 4), -1.5)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Mathematics Questions!