aboutsummaryrefslogtreecommitdiffhomepage
path: root/base_workspace/examples/javatests/BUILD
blob: c504b1c7a09a35c15d1f050a74ebc854a989f270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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",
    ],
)