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
dffac9dc86
commit
d58b2fcfea
@ -978,7 +978,11 @@ public class CharSequenceUtil {
|
||||
}
|
||||
|
||||
/**
|
||||
* 检查指定字符串中是否只包含给定的字符
|
||||
* 检查指定字符串中是否只包含给定的字符<br>
|
||||
* 这里的containsOnly并不是必须全部给定的testChars都需要有,而是一个子集。testChars是个限定集合,检查字符串中的字符是否在这个限定集合中。<br>
|
||||
* <pre>{@code
|
||||
* StrUtil.containsOnly("asdas", 'a', 'd', 's','l'); --> true
|
||||
* }</pre>
|
||||
*
|
||||
* @param str 字符串
|
||||
* @param testChars 检查的字符
|
||||
|
@ -225,4 +225,22 @@ public class CharSequenceUtilTest {
|
||||
Assert.assertEquals(CharSequenceUtil.repeat(CharSequenceUtil.SPACE, 10), CharSequenceUtil.commonSuffix(str1, str2));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testContainsOnly() {
|
||||
// 测试空字符串
|
||||
Assert.assertTrue(CharSequenceUtil.containsOnly("", 'a', 'b'));
|
||||
|
||||
// 测试字符串只包含testChars中的字符
|
||||
Assert.assertTrue(CharSequenceUtil.containsOnly("asdf", 'a', 's', 'd', 'f'));
|
||||
|
||||
// 测试字符串包含testChars中的字符和其它字符
|
||||
Assert.assertFalse(CharSequenceUtil.containsOnly("asdf123", 'a', 's', 'd', 'f'));
|
||||
|
||||
// 测试字符串不包含testChars中的任何字符
|
||||
Assert.assertFalse(CharSequenceUtil.containsOnly("hello", 'a', 'b'));
|
||||
|
||||
// 测试字符串为null
|
||||
Assert.assertTrue(CharSequenceUtil.containsOnly(null, 'a', 'b'));
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user