From 191d9804047fe2d19c6ca561b6f8de6ccbdc93fb Mon Sep 17 00:00:00 2001 From: Damien Martin-Guillerez Date: Thu, 3 Mar 2016 19:29:54 +0000 Subject: RELNOTES: Set --legacy_bazel_java_test to off by default. -- MOS_MIGRATED_REVID=116272974 --- examples/java-native/src/test/java/com/example/myproject/BUILD | 3 +++ 1 file changed, 3 insertions(+) (limited to 'examples') diff --git a/examples/java-native/src/test/java/com/example/myproject/BUILD b/examples/java-native/src/test/java/com/example/myproject/BUILD index b9d81a1ff8..f3a262db99 100644 --- a/examples/java-native/src/test/java/com/example/myproject/BUILD +++ b/examples/java-native/src/test/java/com/example/myproject/BUILD @@ -1,6 +1,7 @@ java_test( name = "hello", srcs = ["TestHello.java"], + test_class = "com.example.myproject.TestHello", deps = [ "//examples/java-native/src/main/java/com/example/myproject:hello-lib", "//third_party:junit4", @@ -10,6 +11,7 @@ java_test( java_test( name = "custom", srcs = ["TestCustomGreeting.java"], + test_class = "com.example.myproject.TestCustomGreeting", deps = [ "//examples/java-native/src/main/java/com/example/myproject:custom-greeting", "//third_party:junit4", @@ -36,6 +38,7 @@ java_test( java_test( name = "resource-fail", srcs = glob(["Test*.java"]), + test_class = "com.example.myproject.TestCustomGreeting", deps = [ "//examples/java-native/src/main/java/com/example/myproject:hello-lib", "//third_party:junit4", -- cgit v1.2.3