(self)
| 76 | assert self.DG.number_of_edges() == nx.number_of_edges(self.DG) |
| 77 | |
| 78 | def test_is_directed(self): |
| 79 | assert self.G.is_directed() == nx.is_directed(self.G) |
| 80 | assert self.DG.is_directed() == nx.is_directed(self.DG) |
| 81 | |
| 82 | def test_add_star(self): |
| 83 | G = self.G.copy() |
nothing calls this directly
no test coverage detected