We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is a sub-issue of the issue below.
org.junit.jupiter.api
The unit tests should use the org.junit.jupiter.api package. This issue deals with the tools module.
tools
I will process the modules where the task has been completed first.
Java
The text was updated successfully, but these errors were encountered:
@llama90 spotless changes have been merged for the Tools module.
Sorry, something went wrong.
Yes, that's why I'm planning to proceed with this first!
GH-42092: [Java] Update Unit Tests for Tools Module (#42093)
fef86d2
### Rationale for this change Update package from JUnit 4(`org.junit`) to JUnit 5(`org.junit.jupiter`). ### What changes are included in this PR? - [x] Replacing org.junit with org.junit.jupiter.api. - [x] Updating Assertions.assertXXX to assertXXX using static imports. - [x] Updating annotations such as `@ Before`, `@ BeforeClass`, `@ After`, `@ AfterClass`, `@ Test`, `@ Rule`, `@ TemporaryFolder` - `@ Before` -> `@ BeforeEach` - `@ BeforeClass` -> `@ BeforeAll` - `@ After` -> `@ AfterEach` - `@ AfterClass` -> `@ AfterAll` - `@ Test` -> `@ Test` with `org.junit.jupiter` - `@ Rule`, `@ TemporaryFolder` -> `@ TempDir` - [x] Doing self review ### Are these changes tested? Yes, existing tests have passed. ### Are there any user-facing changes? No. * GitHub Issue: #42092 Authored-by: Hyunseok Seo <hsseo0501@gmail.com> Signed-off-by: David Li <li.davidm96@gmail.com>
Issue resolved by pull request 42093 #42093
llama90
No branches or pull requests
Describe the enhancement requested
This is a sub-issue of the issue below.
org.junit.jupiter.api
#41680The unit tests should use the
org.junit.jupiter.api
package. This issue deals with thetools
module.I will process the modules where the task has been completed first.
Component(s)
Java
The text was updated successfully, but these errors were encountered: