Looly 5 years ago
parent
commit
0e1936e41d

+ 0 - 2
hutool-core/src/test/java/cn/hutool/core/codec/Base32Test.java

@@ -3,8 +3,6 @@ package cn.hutool.core.codec;
 import org.junit.Assert;
 import org.junit.Assert;
 import org.junit.Test;
 import org.junit.Test;
 
 
-import cn.hutool.core.codec.Base32;
-
 public class Base32Test {
 public class Base32Test {
 	
 	
 	@Test
 	@Test

+ 6 - 0
hutool-poi/src/test/java/cn/hutool/poi/excel/test/ExcelSaxReadTest.java

@@ -101,4 +101,10 @@ public class ExcelSaxReadTest {
 				}
 				}
 		);
 		);
 	}
 	}
+
+	@Test
+	public void dateReadTest(){
+		ExcelUtil.readBySax("d:/test/sax_test.xls", 0, (RowHandler) (i, i1, list) ->
+				Console.log(StrUtil.join(", ", list)));
+	};
 }
 }