(self)
| 294 | self.assertIn("2 issues", output) |
| 295 | |
| 296 | def test_to_console_singular(self): |
| 297 | reporter = Reporter([_make_issue()], "console") |
| 298 | output = reporter.to_console() |
| 299 | self.assertIn("1 issue", output) |
| 300 | |
| 301 | def test_to_console_shows_rule_id_and_code(self): |
| 302 | reporter = Reporter([_make_issue()], "console") |
nothing calls this directly
no test coverage detected