(self)
| 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) |
| 126 | |
| 127 | def test_fl_scope(self) -> None: |
| 128 | """Violations in src/fl/ are also detected.""" |
nothing calls this directly
no test coverage detected