MCPcopy
hub / github.com/tanelpoder/0xtools / create_format_suite

Method create_format_suite

xtop/tests/test_runner.py:235–251  ·  view source on GitHub ↗

Create formatting-focused test suite.

(self)

Source from the content-addressed store, hash-verified

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."""

Callers 1

run_allMethod · 0.95

Calls 3

add_testMethod · 0.95
TestSuiteClass · 0.85
TestCaseClass · 0.85

Tested by

no test coverage detected