(self)
| 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) |
| 123 | |
| 124 | def test_multiple(self) -> None: |
| 125 | self.assertEqual(len(_violations("void a();\nint b();\nbool c() const;")), 3) |
nothing calls this directly
no test coverage detected