| 27 | Graph multiPathGraph; |
| 28 | |
| 29 | AllPathsSearchTest() { |
| 30 | |
| 31 | add_edge(0, 1, disconnectedGraph); |
| 32 | add_vertex(disconnectedGraph); |
| 33 | |
| 34 | add_edge(0, 1, simpleAcyclicGraph); |
| 35 | add_edge(0, 2, simpleAcyclicGraph); |
| 36 | add_edge(2, 3, simpleAcyclicGraph); |
| 37 | |
| 38 | add_edge(0, 1, simpleCyclicGraph); |
| 39 | add_edge(0, 4, simpleCyclicGraph); |
| 40 | add_edge(1, 2, simpleCyclicGraph); |
| 41 | add_edge(2, 1, simpleCyclicGraph); |
| 42 | add_edge(1, 3, simpleCyclicGraph); |
| 43 | |
| 44 | add_edge(0, 1, multiPathGraph); |
| 45 | add_edge(1, 2, multiPathGraph); |
| 46 | add_edge(1, 3, multiPathGraph); |
| 47 | add_edge(2, 3, multiPathGraph); |
| 48 | add_edge(3, 4, multiPathGraph); |
| 49 | add_edge(3, 5, multiPathGraph); |
| 50 | add_edge(4, 5, multiPathGraph); |
| 51 | add_edge(5, 6, multiPathGraph); |
| 52 | |
| 53 | } |
| 54 | |
| 55 | }; |
| 56 |
nothing calls this directly
no test coverage detected