bc8186ad79
In order to use the RangeSubject within gerrit-extension-api as well as gerrit-acceptance-tests, a new Bazel/Buck package is introduced. The purpose of this package is to bundle test helper classes which are shared by different packages. Change-Id: I59aa42d89c06f4de60a2a05d41a72653eba268de
11 lines
227 B
Python
11 lines
227 B
Python
java_library(
|
|
name = "test_util",
|
|
testonly = 1,
|
|
srcs = glob(["src/main/java/**/*.java"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//gerrit-extension-api:api",
|
|
"//lib:truth",
|
|
],
|
|
)
|