DomGarguilo commented on issue #2441: URL: https://github.com/apache/accumulo/issues/2441#issuecomment-1041908425
Here are some quick notes that might help to reference for those who work on the migration or for reviewers. | JUnit4 | JUnit5 | | ----------- | ----------- | | `@Test` | `@Test` | | `@Before` | `@BeforeEach` | | `@After` | `@AfterEach` | | `@BeforeClass` | `@BeforeAll` | | `@AfterClass` | `AfterAll` | | `@Ignore` | `@Disable` | | `@Category` | `@Tag` | | | JUnit4 | JUnit5 | | ----------- | ----------- | ----------- | | Testing class package | `org.junit` | `org.junit.jupiter.api` | | Assertions class | `Assert` | `Assertions` | `TemporaryFolder` was removed and instead a `File` or `Path` is used in JUnit5 with the `@TempDir` annotation. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
