MCPcopy Create free account
hub / github.com/bhowiebkr/PyFlowGraph / setUp

Method setUp

tests/test_group_data_flow.py:357–367  ·  view source on GitHub ↗

Set up complex test scenario.

(self)

Source from the content-addressed store, hash-verified

355 """Integration tests for complete data flow scenarios."""
356
357 def setUp(self):
358 """Set up complex test scenario."""
359 self.mock_node_graph = Mock()
360 self.mock_node_graph.nodes = []
361 self.mock_node_graph.connections = []
362
363 # Create router
364 self.router = GroupConnectionRouter(self.mock_node_graph)
365
366 # Create group
367 self.group = Group("Test Group", ["node1", "node2", "node3"])
368
369 def test_complex_data_flow_scenario(self):
370 """Test complex scenario with multiple inputs, outputs, and internal routing."""

Callers

nothing calls this directly

Calls 2

GroupClass · 0.90

Tested by

no test coverage detected