Since we don't generate the reviewdb.proto file anymore, we also don't need tests which ensure that the generation worked correctly. The hand-written reviewdb.proto file is covered via other tests. Change-Id: I398eab062f9d12f0d85345df38cc653114afa46c
15 lines
369 B
Python
15 lines
369 B
Python
load("//tools/bzl:junit.bzl", "junit_tests")
|
|
|
|
junit_tests(
|
|
name = "proto_tests",
|
|
srcs = glob(["*.java"]),
|
|
deps = [
|
|
"//java/com/google/gerrit/proto",
|
|
"//java/com/google/gerrit/testing:gerrit-test-util",
|
|
"//lib:protobuf",
|
|
"//lib/truth",
|
|
"//lib/truth:truth-proto-extension",
|
|
"//proto:cache_java_proto",
|
|
],
|
|
)
|