mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
add test
This commit is contained in:
parent
6e662d7e6d
commit
8ae3a87174
@ -1,10 +1,17 @@
|
||||
package cn.hutool.core.util;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class Issue3660Test {
|
||||
@Test
|
||||
public void splitTest() {
|
||||
System.out.println(StrUtil.split("", ','));
|
||||
List<String> split = StrUtil.split("", ',');
|
||||
Assert.assertEquals(1, split.size());
|
||||
|
||||
split = StrUtil.splitTrim("", ',');
|
||||
Assert.assertEquals(0, split.size());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user