Reactivate some tests by adding missing BUILD file

The tests LfsDefinitionsTest, RangeTest, and DynamicSetTests weren't
covered by any BUILD file and hence weren't executed when running
all tests.

There don't seem to be any changes which deliberately created this
situation and hence deactivated those tests on purpose. We simply seem
to have 'lost' their coverage with a BUILD file, which is rectified by
this change.

Change-Id: I5de7279c8f2edc3dd3e56a78b301f1f68685396e
This commit is contained in:
Alice Kober-Sotzek
2018-01-23 09:14:50 +01:00
parent 52bed7170a
commit 319c186945

View File

@@ -0,0 +1,13 @@
load("//tools/bzl:junit.bzl", "junit_tests")
junit_tests(
name = "extensions_api_tests",
size = "small",
srcs = glob(["**/*.java"]),
deps = [
"//java/com/google/gerrit/extensions:api",
"//java/com/google/gerrit/extensions/common/testing:common-test-util",
"//lib:truth",
"//lib/guice",
],
)