Skip to content

Commit

Permalink
bazel: Add algorithms test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Oct 19, 2023
1 parent 3c06c83 commit 9cd7566
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions ortools/algorithms/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -224,3 +224,20 @@ cc_library(
"@com_google_absl//absl/strings",
],
)

cc_test(
name = "find_graph_symmetries_test",
size = "medium",
srcs = ["find_graph_symmetries_test.cc"],
#copts = ["-Iexternal/gtest/include"],
deps = [
":find_graph_symmetries",
"//ortools/base",
"//ortools/base:map_util",
"@com_google_absl//absl/random",
"@com_google_absl//absl/status",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/time",
"@com_google_googletest//:gtest_main",
],
)

0 comments on commit 9cd7566

Please sign in to comment.