This commit is contained in:
commit
7c322707ba
51 changed files with 1488 additions and 0 deletions
16
common/tests/BUILD.bazel
Normal file
16
common/tests/BUILD.bazel
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
load("@contrib_rules_jvm//java:defs.bzl", "java_test_suite", "JUNIT5_DEPS")
|
||||
load("@rules_jvm_external//:defs.bzl", "artifact")
|
||||
load("//common:deps.bzl", "COMMON_DEPS")
|
||||
|
||||
java_test_suite(
|
||||
name = "all_tests",
|
||||
srcs = glob(["**/*.java"]),
|
||||
test_suffixes = ["Test.java"],
|
||||
runner = "junit5",
|
||||
size = "small",
|
||||
deps = [
|
||||
"//common",
|
||||
artifact("net.kyori:adventure-text-serializer-plain"),
|
||||
artifact("org.junit.jupiter:junit-jupiter-api"),
|
||||
] + JUNIT5_DEPS + COMMON_DEPS,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue