Exemplo n.º 1
0
  @Test
  public void executesManipulatingQuery() throws Exception {

    flushTestUsers();
    userDao.renameAllUsersTo("newLastname");

    assertEquals(userDao.count().intValue(), userDao.findByLastname("newLastname").size());
  }