| 18 | int TestToUndirectedGraph(); |
| 19 | |
| 20 | int TestGraph2(int, char*[]) |
| 21 | { |
| 22 | std::vector<int> results; |
| 23 | |
| 24 | results.push_back(TestGetEdgeId()); |
| 25 | results.push_back(TestToDirectedGraph()); |
| 26 | results.push_back(TestToUndirectedGraph()); |
| 27 | |
| 28 | for (unsigned int i = 0; i < results.size(); i++) |
| 29 | { |
| 30 | if (results[i] == EXIT_FAILURE) |
| 31 | { |
| 32 | return EXIT_FAILURE; |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | return EXIT_SUCCESS; |
| 37 | } |
| 38 | |
| 39 | int TestGetEdgeId() |
| 40 | { |
nothing calls this directly
no test coverage detected