Package br.com.moonjava.flight.dao.base

Examples of br.com.moonjava.flight.dao.base.UsuarioDAO.deletar()


    request.set("login", "teste");

    List<Usuario> antes = dao.consultar(request);
    assertThat(antes.size(), equalTo(2));

    dao.deletar(id);

    List<Usuario> res = dao.consultar(request);
    assertThat(res.size(), equalTo(1));
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.