예제 #1
0
 public void testUserNotExists() throws Exception {
   boolean b = dao.exists(111L);
   super.assertFalse(b);
 }
예제 #2
0
 public void testUserExists() throws Exception {
   boolean b = dao.exists(1L);
   super.assertTrue(b);
 }