(self)
| 110 | self.assertEqual(len(_violations("bool isReady() const;")), 1) |
| 111 | |
| 112 | def test_definition(self) -> None: |
| 113 | self.assertEqual(len(_violations("void foo() {")), 1) |
| 114 | |
| 115 | def test_class_method_def(self) -> None: |
| 116 | self.assertEqual(len(_violations("void MyClass::doWork() {")), 1) |
nothing calls this directly
no test coverage detected