如何检查Junit中的字母数字条件

时间:2017-05-18 09:10:42

标签: android testing junit junit4 junit5

我试图为登录页面编写Junit测试用例。所以我想测试字母数字测试用例。如何测试Junit中的字母数字大小写。我已经审阅了这个链接Junit

1 个答案:

答案 0 :(得分:1)

只需使用regular expressions检查字母数字模式。

Pattern.matches( ".", "1" );  //true
Pattern.matches( "\\d*", "12345" ); //true
Pattern.matches( "\\d*a", "12a" ); //true
Pattern.matches( "\\d*", "12a" ); //false