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

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


    int id = 1;

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

    dao.deletar(id);

    List<Voo> res = dao.consultar(request);
    assertThat(res.size(), equalTo(2));
  }
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.