Create formatting-focused test suite.
(self)
| 233 | return suite |
| 234 | |
| 235 | def create_format_suite(self) -> TestSuite: |
| 236 | """Create formatting-focused test suite.""" |
| 237 | suite = TestSuite("Format Tests", "Formatting, display, and CLI output checks") |
| 238 | |
| 239 | tests = [ |
| 240 | ("display_utils", "Display formatting helpers", |
| 241 | "python3 -m pytest test_display_utils.py"), |
| 242 | ("filter_display", "Navigation filter summaries", |
| 243 | "python3 -m pytest test_filter_display.py"), |
| 244 | ("cli_histogram_format", "CLI histogram formatting", |
| 245 | "python3 -m pytest test_cli_peek.py"), |
| 246 | ] |
| 247 | |
| 248 | for name, desc, cmd in tests: |
| 249 | suite.add_test(TestCase(name, desc, cmd)) |
| 250 | |
| 251 | return suite |
| 252 | |
| 253 | def create_schema_suite(self) -> TestSuite: |
| 254 | """Create schema-resilience suite.""" |