| 2 | from calculator import add, sub, mul, div, mod, lcm, hcf |
| 3 | |
| 4 | class TestAdd(unittest.TestCase): |
| 5 | def test_add_function(self): |
| 6 | self.assertEqual(add(1, 2), 3) |
| 7 | |
| 8 | class TestSub(unittest.TestCase): |
| 9 | def test_sub_function(self): |
nothing calls this directly
no outgoing calls
no test coverage detected