-
Notifications
You must be signed in to change notification settings - Fork 39
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
Replace TestNG with Junit5 #279
Conversation
0427d82
to
aeccde0
Compare
aeccde0
to
159fb8d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea splitting up the commits. It was much easier to review that way. I only found a couple of very minor things, which you can decide whether or not to update.
...main/java/ee/jakarta/tck/concurrent/framework/arquillian/extensions/TCKArchiveProcessor.java
Outdated
Show resolved
Hide resolved
// Ensure user is running on JDK 11 or higher, different JDKs produce different | ||
// signatures | ||
int javaSpecVersion = Integer.parseInt(System.getProperty("java.specification.version")); | ||
assertTrue(javaSpecVersion >= 11, "The signature tests must be run on a JVM using Java 11 or higher."); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be 17 now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, but the signature file currently in GitHub (unchanged in this PR) was generated using Java 11 so this is still accurate. I will update the signature file, and this test after this refactoring.
This work is currently being tracked under issue #282
Fixes #277
Necessary refactor to ensure we meet the TCK guidelines here: https://github.com/jakartaee/platform-tck/wiki/Standard-Rules-while-separating-standalone-TCKs-from-platform-TCK