
The list of supported Truth extensions is only going to grow. Change-Id: Ic67a9df6a7548d964fc10b13c10b6db1c96e514e
18 lines
476 B
Python
18 lines
476 B
Python
load("//tools/bzl:junit.bzl", "junit_tests")
|
|
|
|
junit_tests(
|
|
name = "tests",
|
|
size = "small",
|
|
srcs = glob(["**/*.java"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//java/com/google/gerrit/index",
|
|
"//java/com/google/gerrit/index:query_exception",
|
|
"//java/com/google/gerrit/index:query_parser",
|
|
"//lib:junit",
|
|
"//lib/antlr:java_runtime",
|
|
"//lib/jgit/org.eclipse.jgit:jgit",
|
|
"//lib/truth",
|
|
],
|
|
)
|