Package com.getperka.flatpack.domain

Examples of com.getperka.flatpack.domain.Person


    /*
     * Because we're testing without a full flatpack structure, all we can expect is that a HasUuid
     * is created with the same UUID. The concrete type would normally be specified in the data
     * section, however it is missing, so we expect the configured type of the codex instead.
     */
    Person p = out2[0];
    assertNotNull(p);
    assertEquals(Person.class, p.getClass());
    assertEquals(employee.getUuid(), p.getUuid());
  }
View Full Code Here


    /*
     * Because we're testing without a full flatpack structure, all we can expect is that a HasUuid
     * is created with the same UUID. The concrete type would normally be specified in the data
     * section, however it is missing, so we expect the configured type of the codex instead.
     */
    Person p = ((List<Person>) out2).get(0);
    assertNotNull(p);
    assertEquals(Person.class, p.getClass());
    assertEquals(employee.getUuid(), p.getUuid());

  }
View Full Code Here

TOP

Related Classes of com.getperka.flatpack.domain.Person

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.