(self)
| 232 | |
| 233 | class ArgReplacerTest(unittest.TestCase): |
| 234 | def setUp(self): |
| 235 | def function(x, y, callback=None, z=None): |
| 236 | pass |
| 237 | |
| 238 | self.replacer = ArgReplacer(function, "callback") |
| 239 | |
| 240 | def test_omitted(self): |
| 241 | args = (1, 2) |
nothing calls this directly
no test coverage detected