@Test
public void hasPhotoInPhotoclass() throws Exception {
int results =
teamPhotoClassController.hasPhotoInPhotoclass( String.valueOf( TEAMPHOTOCLASSID ) ) ;
assertTrue( results >= 1 ) ;
assertNotNull( results ) ;
}
spring mvc responsebody的单元测试方法
最新推荐文章于 2022-08-09 17:38:58 发布
本文通过单元测试验证了TeamPhotoClassController中hasPhotoInPhotoclass方法的功能。该方法接收一个班级ID作为参数,并返回该班级中照片的数量。测试用例确保了返回的结果大于等于1且不为空。
381

被折叠的 条评论
为什么被折叠?



