Examples of PneuCanonico


Examples of br.com.bfmapper.model.PneuCanonico

    assertNotNull("Objeto pessoa.carro não poder ser null", pessoa.getCarro());
  }

  @Test
  public void applyOnRecursiveAttribute() {
    PneuCanonico pneu = new PneuCanonico(4556L, "Pirelli");
    Pessoa pessoa =  new Mapping().applyOn(pneu, "carro.pneu").to(Pessoa.class);
   
    assertNotNull("Objeto pessoa não poder ser null", pessoa);
    assertNotNull("Atributo pessoa.carro.pneu não poder ser null", pessoa.getCarro().getPneu());
   
    assertTrue(pneu.getCodigo() == pessoa.getCarro().getPneu().getId());
  }
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.