Package com.tll.model.test

Examples of com.tll.model.test.TestPersistenceUnitEntityGraphBuilder


  /**
   * Tests marshaler handling of entity circular referencing.
   * @throws Exception Upon failure
   */
  public void testCircularEntity() throws Exception {
    final TestPersistenceUnitEntityGraphBuilder entityGraphBuilder =
      new TestPersistenceUnitEntityGraphBuilder(getEntityBeanFactory());
    final EntityGraph entityGraph = new EntityGraph();
    entityGraphBuilder.setEntityGraph(entityGraph);
    entityGraphBuilder.populateEntityGraph();
    final Marshaler marshaler = getMarshaler();

    // wire up a circular entity
    final Collection<Account> accounts = entityGraph.getEntitiesByType(Account.class);
    // NOTE: we expect 3 of them per test-persistence-unit jar
View Full Code Here

TOP

Related Classes of com.tll.model.test.TestPersistenceUnitEntityGraphBuilder

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.