Sign in
apache
/
incubator-heron
/
refs/heads/cwang/outgoingpackets-debug
/
.
/
tools
/
rules
/
java_tests.bzl
blob: 641b6540137fd3bb5c2936246e1abce65ee556cb [
file
]
def
java_tests
(
test_classes
,
runtime_deps
=[],
data
=[],
size
=
"medium"
):
for
test_class
in
test_classes
:
native
.
java_test
(
name
=
test_class
.
split
(
"."
)[-
1
],
runtime_deps
=
runtime_deps
,
size
=
size
,
test_class
=
test_class
,
data
=
data
,
)