Package siena.base.test.model

Examples of siena.base.test.model.PersonLongAutoIDExtended2


    assertEquals(bob, emps.get(0));
    assertEquals(ben, emps.get(1));
  }

  public void testDoubleInheritance() {
    PersonLongAutoIDExtended2 bob =
      new PersonLongAutoIDExtended2("Bob", "Doe", "Oklahoma", 1, "the_dog1", MyEnum.VAL1);
    pm.save(bob);
   
    PersonLongAutoIDExtended2 bob1 =
      pm.getByKey(PersonLongAutoIDExtended2.class, bob.id);
   
    assertEquals(bob, bob1);

  }
View Full Code Here

TOP

Related Classes of siena.base.test.model.PersonLongAutoIDExtended2

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.