Add tests for leading signs
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1381826 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e2c6ef476d
commit
dbbbb4230f
|
@ -142,6 +142,8 @@ public class StringUtilsIsTest extends TestCase {
|
|||
assertEquals(false, StringUtils.isNumeric("hkHKHik6iUGHKJgU7tUJgKJGI87GIkug"));
|
||||
assertEquals(false, StringUtils.isNumeric("_"));
|
||||
assertEquals(false, StringUtils.isNumeric("hkHKHik*khbkuh"));
|
||||
assertEquals(false, StringUtils.isNumeric("+123"));
|
||||
assertEquals(false, StringUtils.isNumeric("-123"));
|
||||
}
|
||||
|
||||
public void testIsNumericSpace() {
|
||||
|
|
Loading…
Reference in New Issue