Set up test fixtures.
(self)
| 415 | """Test the GroupConnectionRouter class.""" |
| 416 | |
| 417 | def setUp(self): |
| 418 | """Set up test fixtures.""" |
| 419 | self.mock_node_graph = Mock() |
| 420 | self.router = GroupConnectionRouter(self.mock_node_graph) |
| 421 | |
| 422 | def test_create_routing_for_group(self): |
| 423 | """Test creating routing table for a group.""" |
nothing calls this directly
no test coverage detected