| 4 | |
| 5 | |
| 6 | class TestIgraph(unittest.TestCase): |
| 7 | def test_graph(self): |
| 8 | # Create a graph with 10 vertices & 2 children each. |
| 9 | g2 = Graph.Tree(n=10, children=2) |
| 10 | |
| 11 | self.assertEqual(9, len(g2.get_edgelist())) |
| 12 |
nothing calls this directly
no outgoing calls
no test coverage detected