| 22 | self.assertEqual(mod(100, 2), 0) |
| 23 | |
| 24 | class TestLcm(unittest.TestCase): |
| 25 | def test_lcm_function(self): |
| 26 | self.assertEqual(lcm(54, 24), 216) |
| 27 | |
| 28 | class TestHcf(unittest.TestCase): |
| 29 | def test_hcf_function(self): |
nothing calls this directly
no outgoing calls
no test coverage detected