| 26 | self.assertEqual(lcm(54, 24), 216) |
| 27 | |
| 28 | class TestHcf(unittest.TestCase): |
| 29 | def test_hcf_function(self): |
| 30 | self.assertEqual(hcf(54, 24), 6) |
| 31 | |
| 32 | if __name__ == '__main__': |
| 33 | unittest.main(verbosity=2) |
nothing calls this directly
no outgoing calls
no test coverage detected