0

我试图为登录页面编写 Junit 测试用例。所以我想测试字母数字测试用例。如何在 Junit 中测试字母数字用例。我已经参考了这个链接Junit

4

1 回答 1

1

只需使用正则表达式来检查字母数字模式。

Pattern.matches( ".", "1" );  //true
Pattern.matches( "\\d*", "12345" ); //true
Pattern.matches( "\\d*a", "12a" ); //true
Pattern.matches( "\\d*", "12a" ); //false
于 2017-05-18T14:42:56.403 回答