yuxiqian commented on PR #3643:
URL: https://github.com/apache/flink-cdc/pull/3643#issuecomment-2753668426

   Hi @MOBIN-F, thanks for your contribution! Could you please rebase this PR 
with latest `master` when available?
   
   Code style verifier has been updated to enforce JUnit 5 + AssertJ framework 
and these classes might need to be migrated:
   
   * JUnit 4 style test annotations should be changed to JUnit 5 equivalents
     * `org.junit.Test` => `org.junit.jupiter.api.Test`
     * `@Before`, `@BeforeClass` => `@BeforeEach`, `@BeforeAll`
     * `@After`, `@AfterClass` => `@AfterEach`, `@AfterAll`
   
   * JUnit Assertions / Hamcrest Assertions are not allowed, including:
     * `org.junit.Assert`
     * `org.junit.jupiter.api.Assertions`
     * `org.hamcrest.*`
   
   `org.assertj.core.api.Assertions` should be used instead.
   
   Run `mvn verify -DskipTests` locally to check if all these requirements have 
been satisfied.


-- 
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]

Reply via email to