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