slawekjaranowski commented on code in PR #445: URL: https://github.com/apache/maven-dependency-plugin/pull/445#discussion_r1821212152
########## src/test/java/org/apache/maven/plugins/dependency/utils/filters/TestDestFileFilter.java: ########## @@ -23,43 +23,37 @@ import java.util.HashSet; import java.util.Set; -import junit.framework.TestCase; -import org.apache.commons.io.FileUtils; import org.apache.maven.artifact.Artifact; import org.apache.maven.plugin.MojoExecutionException; -import org.apache.maven.plugin.logging.Log; -import org.apache.maven.plugin.testing.SilentLog; import org.apache.maven.plugins.dependency.testUtils.DependencyArtifactStubFactory; import org.apache.maven.plugins.dependency.utils.DependencyUtil; import org.apache.maven.shared.artifact.filter.collection.ArtifactFilterException; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.io.TempDir; + +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertNull; +import static org.junit.jupiter.api.Assertions.assertSame; +import static org.junit.jupiter.api.Assertions.assertTrue; /** * @author brianf */ -public class TestDestFileFilter extends TestCase { +public class TestDestFileFilter { Review Comment: we can remove `public` classifier for JUnit 5 for class and tests methods -- 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: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org