Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added new test, 5 tests failed #370

Merged
merged 1 commit into from
Nov 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,19 @@ if(TEST)
add_test(test_bestfirstsearch test_exe --gtest_filter=BestFirstSearch*)
add_test(test_kahn test_exe --gtest_filter=Kahn*)
add_test(test_DOT test_exe --gtest_filter=DOTTest*)

add_test(test_bellmanford test_exe --gtest_filter=BellmanFord*)
add_test(test_boruvka test_exe --gtest_filter=Boruvka*)
add_test(test_connectivity test_exe --gtest_filter=Connectivity*)
add_test(test_euler_path test_exe --gtest_filter=EulerPath*)
add_test(test_fordfulkerson test_exe --gtest_filter=FordFulkerson*)
add_test(test_fw test_exe --gtest_filter=FW*)
add_test(test_graph_slicing test_exe --gtest_filter=GraphSlicing*)
add_test(test_kruskal test_exe --gtest_filter=Kruskal*)
add_test(test_mtx test_exe --gtest_filter=MTX*)
add_test(test_prim test_exe --gtest_filter=Prim*)
add_test(test_tarjan test_exe --gtest_filter=Tarjan*)
add_test(test_topological_sort test_exe --gtest_filter=TopologicalSort*)
add_test(test_transitive_reductiono test_exe --gtest_filter=TransitiveReduction*)
add_test(test_union_find test_exe --gtest_filter=UnionFind*)
endif(TEST)
Loading