Bazel: Use junit_test instead of java_test

This aligns the plugin's test build configuration with the
other plugins.

Change-Id: I654b2ab4aebd8f7b4a148040b8c895c1331c2900
diff --git a/BUILD b/BUILD
index e1a13dd..adf25b4 100644
--- a/BUILD
+++ b/BUILD
@@ -4,6 +4,7 @@
     "PLUGIN_TEST_DEPS",
     "gerrit_plugin",
 )
+load("//tools/bzl:junit.bzl", "junit_tests")
 
 gerrit_plugin(
     name = "verify-status",
@@ -21,12 +22,11 @@
     resources = glob(["src/main/**/*"]),
 )
 
-java_test(
+junit_tests(
     name = "verify-status-tests",
     size = "small",
     srcs = ["src/test/java/com/googlesource/gerrit/plugins/verifystatus/VerifyStatusIT.java"],
     tags = ["verify-status"],
-    test_class = "com.googlesource.gerrit.plugins.verifystatus.VerifyStatusIT",
     deps = [
         ":verify-status__plugin_test_deps",
     ],