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
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apiguardian = "1.1.2"
assertj = "3.27.6"
bnd = "7.1.0"
checkstyle = "12.2.0"
eclipse = "4.37.0"
eclipse = "4.38.0"
jackson = "2.20.1"
jacoco = "0.8.14"
jmh = "1.37"
Expand Down
2 changes: 2 additions & 0 deletions junit-start/src/main/java/org/junit/start/JUnit.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,14 @@ public static void run() {
}

/// Run all tests defined in the given test class.
///
/// @param testClass the class to discover and execute tests in
public static void run(Class<?> testClass) {
run(selectClass(testClass));
}

/// Run all tests defined in the given module.
///
/// @param testModule the module to discover and execute tests in
public static void run(Module testModule) {
run(selectModule(testModule));
Expand Down