(self)
| 116 | self.assertEqual(len(_violations("void MyClass::doWork() {")), 1) |
| 117 | |
| 118 | def test_static_func(self) -> None: |
| 119 | self.assertEqual(len(_violations("static void helper(int x);")), 1) |
| 120 | |
| 121 | def test_constructor(self) -> None: |
| 122 | self.assertEqual(len(_violations("Semaphore();")), 1) |
nothing calls this directly
no test coverage detected