-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JupiterTestEngine crashes if JUnit 4 is on the classpath but Hamcrest is not #2004
Closed
2 tasks done
Comments
sbrannen
added a commit
that referenced
this issue
Sep 7, 2019
Prior to this commit, the JupiterTestEngine would crash without executing any tests if JUnit 4 was on the classpath but Hamcrest was not. This commit fixes this bug by ensuring that initialization of the OpenTest4JAndJUnit4AwareThrowableCollector class no longer fails if the org.junit.internal.AssumptionViolatedException class cannot be loaded from the classpath -- for example, due to a missing Hamcrest dependency. Fixes #2004
sbrannen
added a commit
that referenced
this issue
Sep 8, 2019
This commit improves diagnostics by logging the cause of a failure to load the AssumptionViolatedException class in OpenTest4JAndJUnit4AwareThrowableCollector. Issue: #2004
sbrannen
added a commit
that referenced
this issue
Sep 8, 2019
This commit improves diagnostics by logging the cause of a failure to load the AssumptionViolatedException class in OpenTest4JAndJUnit4AwareThrowableCollector. Issue: #2004
sbrannen
added a commit
that referenced
this issue
Sep 8, 2019
This has been moved to 5.5.2. Issue: #2004
sbrannen
added a commit
to spring-projects/spring-framework
that referenced
this issue
Sep 9, 2019
This commit also removes the testRuntime dependency on Hamcrest which was a workaround for junit-team/junit5#2004. Closes gh-23604
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Overview
While migrating the Spring Framework test suite from JUnit 4 and Hamcrest to JUnit Jupiter and AssertJ, entire projects in Spring's test suite started reporting zero tests after removing the dependency on Hamcrest even though the tests no longer used Hamcrest. Adding Hamcrest back as a test runtime dependency allowed the tests to execute again.
Analysis
Thanks to some investigative work by @marcphilipp, we came to the following conclusion.
The
JupiterTestEngine
fails with aNoClassDefFoundError
if JUnit 4 is on the classpath but Hamcrest is not. The underlying reason is thatOpenTest4JAndJUnit4AwareThrowableCollector
has astatic
initialization block that checks if theorg.junit.internal.AssumptionViolatedException
class can be loaded. However, sinceAssumptionViolatedException
has a direct dependency onorg.hamcrest.Matcher
, aNoClassDefFoundError
is thrown when attempting to loadAssumptionViolatedException
.Deliverables
OpenTest4JAndJUnit4AwareThrowableCollector
so that a failed attempt to detect the presence ofAssumptionViolatedException
in the classpath does not crash the entireJupiterTestEngine
.The text was updated successfully, but these errors were encountered: