| 6 | self.assertEqual(add(1, 2), 3) |
| 7 | |
| 8 | class TestSub(unittest.TestCase): |
| 9 | def test_sub_function(self): |
| 10 | self.assertEqual(sub(55, 5), 50) |
| 11 | |
| 12 | class TestMul(unittest.TestCase): |
| 13 | def test_mul_function(self): |
nothing calls this directly
no outgoing calls
no test coverage detected