/**
* RoleList can't add null
*/
public Result testRoleListNull() {
RoleList roleList = new RoleList();
try {
roleList.addAll(null);
} catch (Exception e) {
return failed("RoleList(null) is acceptable: " + e.toString());
}
return passed();
}
RoleTest.java 文件源码
java
阅读 29
收藏 0
点赞 0
评论 0
项目:freeVM
作者:
评论列表
文章目录