| 55 | }; |
| 56 | |
| 57 | TEST_F(AllPathsSearchTest, UnreachableGoal) |
| 58 | { |
| 59 | AllPathsSearchResult<Vertex> result = allPathsSearch(disconnectedGraph, 0, 2); |
| 60 | |
| 61 | EXPECT_EQ(NO_PATH, result.resultCode); |
| 62 | EXPECT_TRUE(result.paths.empty()); |
| 63 | } |
| 64 | |
| 65 | TEST_F(AllPathsSearchTest, StartNodeEqualsGoal) |
| 66 | { |