我试图为登录页面编写Junit测试用例。所以我想测试字母数字测试用例。如何测试Junit中的字母数字大小写。我已经审阅了这个链接Junit
答案 0 :(得分:1)
只需使用regular expressions检查字母数字模式。
Pattern.matches( ".", "1" ); //true
Pattern.matches( "\\d*", "12345" ); //true
Pattern.matches( "\\d*a", "12a" ); //true
Pattern.matches( "\\d*", "12a" ); //false