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