SwingGuy1024 commented on code in PR #450: URL: https://github.com/apache/commons-io/pull/450#discussion_r1171835409
########## src/test/java/org/apache/commons/io/filefilter/SymbolicLinkFileFilterTest.java: ########## @@ -17,21 +17,198 @@ package org.apache.commons.io.filefilter; -import static org.junit.jupiter.api.Assertions.assertEquals; - +import java.io.File; +import java.io.IOException; import java.nio.file.FileVisitResult; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.function.BiFunction; import org.apache.commons.io.file.PathUtils; +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; +import static org.junit.jupiter.api.Assertions.assertEquals; Review Comment: Done. CheckStyles doesn't have a test for this? (I'm not too familiar with CheckStyles anymore. It's been years.) -- 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]
