(self)
| 107 | self.assertEqual(len(_violations("int bar(float x);")), 1) |
| 108 | |
| 109 | def test_const_method(self) -> None: |
| 110 | self.assertEqual(len(_violations("bool isReady() const;")), 1) |
| 111 | |
| 112 | def test_definition(self) -> None: |
| 113 | self.assertEqual(len(_violations("void foo() {")), 1) |
nothing calls this directly
no test coverage detected