Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ public abstract static class Builder {

public abstract Builder setSections(Set<CelTestSection> section);

public abstract Builder setSections(CelTestSection... sections);

public abstract Builder setSource(Source source);

@CheckReturnValue
Expand Down Expand Up @@ -80,6 +82,8 @@ public abstract static class Builder {

public abstract Builder setTests(Set<CelTestCase> tests);

public abstract Builder setTests(CelTestCase... tests);

public abstract Builder setDescription(String description);

@CheckReturnValue
Expand Down
6 changes: 3 additions & 3 deletions testing/src/test/java/dev/cel/testing/testrunner/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ package(
],
)

# Since the user test class is triggered by the cel_test_runner rule, we should not add it to the
# Since the user test class is triggered by the cel_test rule, we should not add it to the
# junit4_test_suite.
# This is just a sample test class for the cel_test_runner rule.
# This is just a sample test class for the cel_test rule.
java_library(
name = "user_test",
srcs = ["UserTest.java"],
Expand All @@ -26,7 +26,7 @@ java_library(
],
)

# This is just a sample test class for the cel_test_runner rule.
# This is just a sample test class for the cel_test rule.
java_library(
name = "env_config_user_test",
srcs = ["EnvConfigUserTest.java"],
Expand Down
Loading