mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-05-09 23:51:34 +08:00
add test
This commit is contained in:
parent
2b6326ca94
commit
05c554605b
@ -0,0 +1,18 @@
|
|||||||
|
package cn.hutool.core.util;
|
||||||
|
|
||||||
|
import cn.hutool.core.io.FileUtil;
|
||||||
|
import cn.hutool.core.lang.Console;
|
||||||
|
import org.junit.Ignore;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class IssueI9IDAGTest {
|
||||||
|
@Test
|
||||||
|
@Ignore
|
||||||
|
public void loopFilesTest() {
|
||||||
|
final List<File> files = FileUtil.loopFiles("d:/m2_repo");
|
||||||
|
files.forEach(Console::log);
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user