Package com.avaje.tests.unitinternal

Source Code of com.avaje.tests.unitinternal.TestNullCollectionSet

package com.avaje.tests.unitinternal;

import java.util.List;

import org.junit.Assert;
import org.junit.Test;

import com.avaje.ebean.BaseTestCase;
import com.avaje.ebean.Ebean;
import com.avaje.ebean.bean.BeanCollection;
import com.avaje.tests.model.basic.ENullCollection;
import com.avaje.tests.model.basic.ENullCollectionDetail;

public class TestNullCollectionSet extends BaseTestCase {

  @Test
  public void test() {

    ENullCollection c = new ENullCollection();

    Ebean.save(c);

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

    Assert.assertNotNull(c2);

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

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

    BeanCollection<?> bc = (BeanCollection<?>) details;
    Assert.assertTrue(!bc.isPopulated());
    Assert.assertNotNull(bc.getOwnerBean());
    Assert.assertNotNull(bc.getPropertyName());
  }

}
TOP

Related Classes of com.avaje.tests.unitinternal.TestNullCollectionSet

TOP
Copyright © 2018 www.massapi.com. 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.