|
@ -30,6 +30,9 @@ class fractions(unittest.TestCase): |
|
|
def test_multiply_fractions_1_by_2_and_1_by_2_should_be_1_by_4(self): |
|
|
def test_multiply_fractions_1_by_2_and_1_by_2_should_be_1_by_4(self): |
|
|
self.assertEqual(multiplyFractions(1,2,1,2), (1,4)) |
|
|
self.assertEqual(multiplyFractions(1,2,1,2), (1,4)) |
|
|
|
|
|
|
|
|
|
|
|
def test_multiply_fractions_1_by_5_and_5_by_3_should_be_1_by_3(self): |
|
|
|
|
|
self.assertEqual(multiplyFractions(1,5,5,3), (1,3)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
if __name__ == '__main__': |
|
|
unittest.main() |
|
|
unittest.main() |