blob: c504b1c7a09a35c15d1f050a74ebc854a989f270 [file] [log] [blame]
java_test(
name = "hello",
srcs = ["test/TestHello.java"],
deps = [
"//examples/java:hello-lib",
"//third_party:junit4",
],
)
java_test(
name = "bye",
srcs = ["test/TestBye.java"],
deps = [
"//examples/java:bye-lib",
"//third_party:junit4",
],
)
java_test(
name = "fail",
srcs = ["test/Fail.java"],
deps = ["//third_party:junit4"],
)
java_test(
name = "should_fail",
srcs = glob(["test/Test*.java"]),
deps = [
"//examples/java:hello-lib",
"//third_party:junit4",
],
)