Set compiler.problem.forbiddenReference to error for all projects#3762
Conversation
|
This pull request changes some projects for the first time in this development cycle. An additional commit containing all the necessary changes was pushed to the top of this PR's branch. To obtain these changes (for example if you want to push more changes) either fetch from your fork or apply the git patch. Git patchFurther information are available in Common Build Issues - Missing version increments. |
Test Results 852 files - 2 172 852 suites - 2 172 53m 46s ⏱️ - 1h 24m 33s Results for commit ebd74bc. ± Comparison against base commit c5f3a58. This pull request removes 6328 and adds 5936 tests. Note that renamed tests count towards both.This pull request removes 119 skipped tests and adds 119 skipped tests. Note that renamed tests count towards both.♻️ This comment has been updated with latest results. |
If it's not already an error.
8c499f7 to
a94ff4e
Compare
| Bundle-Vendor: Eclipse.org | ||
| Import-Package: org.junit.jupiter.api;version="[5.14.0,6.0.0)", | ||
| org.junit.jupiter.api.function;version="[5.14.0,6.0.0)", | ||
| org.junit.jupiter.api.io;version="[5.14.0,6.0.0)", |
There was a problem hiding this comment.
And we have our first missing dependency.
Without it, the @TempDir annotation cannot be used in:
The reason why this didn't surface at runtime, is probably because Annotations whose class cannot be loaded, are just silently ignored.
But the creation/clean-up of that directory certainly wouldn't have worked.
'Luckily' the referencing tests are disabled.
If it's not already an error.
See