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