Skip to content

Commit b2e1adc

Browse files
committed
[java] Adding more unit tests to bazel build
1 parent 5be744b commit b2e1adc

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
load("//java:defs.bzl", "java_test_suite")
2+
3+
java_test_suite(
4+
name = "SmallTests",
5+
size = "small",
6+
srcs = glob(["*.java"]),
7+
deps = [
8+
"//java/client/src/org/openqa/selenium/json",
9+
"//java/client/src/org/openqa/selenium/remote",
10+
"//java/client/src/org/openqa/selenium/remote/http",
11+
"//third_party/java/assertj",
12+
"//third_party/java/guava",
13+
"//third_party/java/junit",
14+
],
15+
)
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
load("//java:defs.bzl", "java_test_suite")
2+
3+
java_test_suite(
4+
name = "SmallTests",
5+
size = "small",
6+
srcs = glob(["*.java"]),
7+
deps = [
8+
"//java/client/src/org/openqa/selenium/json",
9+
"//java/client/src/org/openqa/selenium/remote",
10+
"//java/client/src/org/openqa/selenium/remote/http",
11+
"//third_party/java/assertj",
12+
"//third_party/java/guava",
13+
"//third_party/java/junit",
14+
],
15+
)

0 commit comments

Comments
 (0)