Set up test fixtures.
(self)
| 34 | """Test suite for file format handling.""" |
| 35 | |
| 36 | def setUp(self): |
| 37 | """Set up test fixtures.""" |
| 38 | self.handler = FlowFormatHandler() |
| 39 | |
| 40 | def test_json_to_markdown_conversion(self): |
| 41 | """Test converting JSON graph data to markdown format.""" |
nothing calls this directly
no test coverage detected