slawekjaranowski commented on code in PR #184:
URL: https://github.com/apache/maven-ejb-plugin/pull/184#discussion_r2510150174
##########
src/test/java/org/apache/maven/plugins/ejb/EjbMojoTest.java:
##########
@@ -29,11 +29,19 @@
import org.apache.maven.plugins.ejb.stub.MavenProjectResourcesStub;
import org.apache.maven.plugins.ejb.utils.JarContentChecker;
import org.apache.maven.project.MavenProject;
+import org.codehaus.plexus.util.FileUtils;
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertFalse;
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+import static org.junit.jupiter.api.Assertions.fail;
/**
* EJB plugin Test Case
*/
-public class EjbMojoTest extends AbstractMojoTestCase {
+class EjbMojoTest extends AbstractMojoTestCase {
Review Comment:
`AbstractMojoTestCase` is based on JUnit 3
We need migrate such test to `@MojoTest` 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]