(self)
| 7 | |
| 8 | class testBFS(FlowTestsBase): |
| 9 | def __init__(self): |
| 10 | self.env = Env(decodeResponses=True) |
| 11 | global graph |
| 12 | redis_con = self.env.getConnection() |
| 13 | graph = Graph(redis_con, "proc_bfs") |
| 14 | self.populate_graph() |
| 15 | |
| 16 | def populate_graph(self): |
| 17 | global nodes |
nothing calls this directly
no test coverage detected