Package com.avaje.tests.model.basic

Examples of com.avaje.tests.model.basic.EVanillaCollection


public class TestVanillaCollectionSet extends BaseTestCase {

  @Test
  public void test() {

    EVanillaCollection c = new EVanillaCollection();

    Ebean.save(c);

    EVanillaCollection c2 = Ebean.find(EVanillaCollection.class, c.getId());

    Assert.assertNotNull(c2);

    List<EVanillaCollectionDetail> details = c2.getDetails();
    Assert.assertNotNull(details);

    Assert.assertTrue("Is BeanCollection", details instanceof BeanCollection<?>);

    BeanCollection<?> bc = (BeanCollection<?>) details;
View Full Code Here

TOP

Related Classes of com.avaje.tests.model.basic.EVanillaCollection

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.