示例#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);
 }