aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.test/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jgit.test/BUILD')
-rw-r--r--org.eclipse.jgit.test/BUILD17
1 files changed, 17 insertions, 0 deletions
diff --git a/org.eclipse.jgit.test/BUILD b/org.eclipse.jgit.test/BUILD
index 6f6c88ce8d..e63c02c03c 100644
--- a/org.eclipse.jgit.test/BUILD
+++ b/org.eclipse.jgit.test/BUILD
@@ -51,6 +51,23 @@ tests(tests = glob(
exclude = HELPERS + DATA + EXCLUDED,
))
+# Non abstract base classes used for tests by other test classes
+BASE = [
+ PKG + "internal/storage/file/FileRepositoryBuilderTest.java",
+ PKG + "internal/storage/file/RefDirectoryTest.java",
+]
+
+java_library(
+ name = "base",
+ testonly = 1,
+ srcs = BASE,
+ deps = [
+ "//lib:junit",
+ "//org.eclipse.jgit:jgit",
+ "//org.eclipse.jgit.junit:junit",
+ ],
+)
+
java_library(
name = "helpers",
testonly = 1,