| 10 | self.assertEqual(sub(55, 5), 50) |
| 11 | |
| 12 | class TestMul(unittest.TestCase): |
| 13 | def test_mul_function(self): |
| 14 | self.assertEqual(mul(1, 2), 2) |
| 15 | |
| 16 | class TestDiv(unittest.TestCase): |
| 17 | def test_div_function(self): |
nothing calls this directly
no outgoing calls
no test coverage detected