Package siena.base.test.model

Examples of siena.base.test.model.PersonLongAutoIDExtendedFilter


    assertEquals(bob, bob1);

  }
 
  public void testFilterInheritance() {
    PersonLongAutoIDExtendedFilter bob =
      new PersonLongAutoIDExtendedFilter("Bob", "Doe", "Oklahoma", 1, "the_dog1");
    pm.save(bob);
   
    PersonLongAutoIDExtendedFilter bob1 =
      pm.getByKey(PersonLongAutoIDExtendedFilter.class, bob.id);
   
    assertNotSame(bob, bob1);
    assertEquals(bob.firstName, bob1.firstName);
    assertEquals(bob.lastName, bob1.lastName);
View Full Code Here

TOP

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

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.