(self)
| 101 | """Test that functions missing FL_NOEXCEPT are flagged.""" |
| 102 | |
| 103 | def test_void_func(self) -> None: |
| 104 | self.assertEqual(len(_violations("void foo();")), 1) |
| 105 | |
| 106 | def test_return_type(self) -> None: |
| 107 | self.assertEqual(len(_violations("int bar(float x);")), 1) |
nothing calls this directly
no test coverage detected