(self)
| 246 | configure_output(OutputMode.PLAIN) |
| 247 | |
| 248 | def teardown_method(self) -> None: |
| 249 | configure_output(OutputMode.PRETTY) |
| 250 | |
| 251 | def test_header_false_omits_header_row(self, capsys: pytest.CaptureFixture[str]) -> None: |
| 252 | print_plain_table(["Name", "ID"], [["Cube", "123"], ["Sphere", "456"]], header=False) |
nothing calls this directly
no test coverage detected