aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/cpp/BUILD
blob: 892d73b99cd3d5580f9a74bc61aaf4295670632c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Description:
#   C++ utility tests for Bazel
package(default_visibility = ["//visibility:public"])

cc_test(
    name = "blaze_util_test",
    srcs = ["blaze_util_test.cc"],
    deps = [
        "//src/main/cpp:blaze_util",
        "//src/main/cpp/util",
        "//third_party:gtest",
    ],
)

test_suite(name = "all_tests")