Package br.com.bfmapper.model

Examples of br.com.bfmapper.model.ObjectCanonicModel


  @Test
  public void converterListEnumType() {
    ObjectModel model = new ObjectModel(Arrays.asList(TipoAluno.ESPECIAL, TipoAluno.REGULAR));
   
    ObjectCanonicModel canonicModel = new Mapping().apply(model).to(ObjectCanonicModel.class);

    assertNotNull("Propriedade tipoAlunos não poder ser null", canonicModel.getTipoAlunos());
    assertNotNull("Propriedade tipoAlunos não poder ser vazia", !canonicModel.getTipoAlunos().isEmpty());
  }
View Full Code Here

TOP

Related Classes of br.com.bfmapper.model.ObjectCanonicModel

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.