Package com.loja.model

Examples of com.loja.model.Usuario


    Assert.assertNotNull(usuarios);
  }
 
  @Test
  public void findById() {
    Usuario usuario = em.find(Usuario.class, idToInteract);
    Assert.assertNotNull(usuario);
  }
View Full Code Here


    Assert.assertNotNull(usuario);
  }
 
  @Test
  public void edit() {
    Usuario usuario = em.find(Usuario.class, idToInteract);
    usuario.setEmail("teste@teste.com.br");
    em.persist(usuario);
    Assert.assertEquals("teste@teste.com.br", usuario.getEmail());
  }
View Full Code Here

    Assert.assertEquals("teste@teste.com.br", usuario.getEmail());
  }
 
  @Test
  public void remove() {
    Usuario usuario = em.find(Usuario.class, idToInteract);
    em.remove(usuario);
    usuario = em.find(Usuario.class, idToInteract);
    Assert.assertNull(usuario);
  }
View Full Code Here

TOP

Related Classes of com.loja.model.Usuario

Copyright © 2018 www.massapicom. 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.