| 18 | self.assertEqual(div(10, 5), 2) |
| 19 | |
| 20 | class TestMod(unittest.TestCase): |
| 21 | def test_mod_function(self): |
| 22 | self.assertEqual(mod(100, 2), 0) |
| 23 | |
| 24 | class TestLcm(unittest.TestCase): |
| 25 | def test_lcm_function(self): |
nothing calls this directly
no outgoing calls
no test coverage detected