コード例 #1
0
ファイル: UserDaoTest.java プロジェクト: rameshi2it/ca
 @Test
 public void testUserNotExists() throws Exception {
   boolean b = dao.exists(111L);
   assertFalse(b);
 }
コード例 #2
0
ファイル: UserDaoTest.java プロジェクト: rameshi2it/ca
 @Test
 public void testUserExists() throws Exception {
   boolean b = dao.exists(-1L);
   assertTrue(b);
 }