(self)
| 139 | self.assertEqual(len(_violations("void foo() noexcept;")), 0) |
| 140 | |
| 141 | def test_noexcept_def(self) -> None: |
| 142 | self.assertEqual(len(_violations("void foo() noexcept {")), 0) |
| 143 | |
| 144 | def test_noexcept_const(self) -> None: |
| 145 | self.assertEqual(len(_violations("bool bar() const noexcept;")), 0) |
nothing calls this directly
no test coverage detected