aboutsummaryrefslogtreecommitdiff
path: root/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD.bazel')
-rw-r--r--BUILD.bazel11
1 files changed, 11 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
index 54addd2..dd5c889 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -20,6 +20,17 @@ java_library(
],
)
+java_test(
+ name = "TestUtilTest",
+ size = "small",
+ srcs = ["java/com/google/security/wycheproof/TestUtilTest.java"],
+ test_class = "com.google.security.wycheproof.TestUtilTest",
+ deps = [
+ ":utils",
+ "@junit",
+ ],
+)
+
common_deps = [
":utils",
"@com_google_code_gson_gson",