Search in sources :

Example 1 with InheritancePopulator

use of org.eclipse.persistence.testing.models.jpa.inheritance.InheritancePopulator in project eclipselink by eclipse-ee4j.

the class JUnitJPQLInheritanceTestSuite method testSetup.

/**
 * The setup is done as a test, both to record its failure, and to allow execution in the server.
 */
public void testSetup() {
    clearCache();
    // get session to start setup
    DatabaseSession session = JUnitTestCase.getServerSession();
    // create a new EmployeePopulator
    EmployeePopulator employeePopulator = new EmployeePopulator();
    // initialize the global comparer object
    comparer = new JUnitDomainObjectComparer();
    // set the session for the comparer to use
    comparer.setSession((AbstractSession) session.getActiveSession());
    new AdvancedTableCreator().replaceTables(session);
    new InheritanceTableCreator().replaceTables(session);
    // Populate the tables
    employeePopulator.buildExamples();
    // Persist the examples in the database
    employeePopulator.persistExample(session);
    // Populate the tables
    InheritancePopulator inheritancePopulator = new InheritancePopulator();
    inheritancePopulator.buildExamples();
    // Persist the examples in the database
    inheritancePopulator.persistExample(session);
}
Also used : AdvancedTableCreator(org.eclipse.persistence.testing.models.jpa.advanced.AdvancedTableCreator) EmployeePopulator(org.eclipse.persistence.testing.models.jpa.advanced.EmployeePopulator) DatabaseSession(org.eclipse.persistence.sessions.DatabaseSession) InheritancePopulator(org.eclipse.persistence.testing.models.jpa.inheritance.InheritancePopulator) InheritanceTableCreator(org.eclipse.persistence.testing.models.jpa.inheritance.InheritanceTableCreator)

Example 2 with InheritancePopulator

use of org.eclipse.persistence.testing.models.jpa.inheritance.InheritancePopulator in project eclipselink by eclipse-ee4j.

the class AdvancedQueryTestSuite method testSetup.

/**
 * The setup is done as a test, both to record its failure, and to allow execution in the server.
 */
public void testSetup() {
    clearCache();
    DatabaseSession session = JUnitTestCase.getServerSession();
    // create a new EmployeePopulator
    EmployeePopulator employeePopulator = new EmployeePopulator();
    new AdvancedTableCreator().replaceTables(session);
    // initialize the global comparer object
    comparer = new JUnitDomainObjectComparer();
    // set the session for the comparer to use
    comparer.setSession((AbstractSession) session.getActiveSession());
    // Populate the tables
    employeePopulator.buildExamples();
    // Persist the examples in the database
    employeePopulator.persistExample(session);
    new RelationshipsTableManager().replaceTables(session);
    // populate the relationships model and persist as well
    new RelationshipsExamples().buildExamples(session);
    new InheritanceTableCreator().replaceTables(session);
    InheritancePopulator inheritancePopulator = new InheritancePopulator();
    inheritancePopulator.buildExamples();
    // Persist the examples in the database
    inheritancePopulator.persistExample(session);
}
Also used : RelationshipsTableManager(org.eclipse.persistence.testing.models.jpa.relationships.RelationshipsTableManager) AdvancedTableCreator(org.eclipse.persistence.testing.models.jpa.advanced.AdvancedTableCreator) RelationshipsExamples(org.eclipse.persistence.testing.models.jpa.relationships.RelationshipsExamples) EmployeePopulator(org.eclipse.persistence.testing.models.jpa.advanced.EmployeePopulator) DatabaseSession(org.eclipse.persistence.sessions.DatabaseSession) InheritancePopulator(org.eclipse.persistence.testing.models.jpa.inheritance.InheritancePopulator) InheritanceTableCreator(org.eclipse.persistence.testing.models.jpa.inheritance.InheritanceTableCreator)

Aggregations

DatabaseSession (org.eclipse.persistence.sessions.DatabaseSession)2 AdvancedTableCreator (org.eclipse.persistence.testing.models.jpa.advanced.AdvancedTableCreator)2 EmployeePopulator (org.eclipse.persistence.testing.models.jpa.advanced.EmployeePopulator)2 InheritancePopulator (org.eclipse.persistence.testing.models.jpa.inheritance.InheritancePopulator)2 InheritanceTableCreator (org.eclipse.persistence.testing.models.jpa.inheritance.InheritanceTableCreator)2 RelationshipsExamples (org.eclipse.persistence.testing.models.jpa.relationships.RelationshipsExamples)1 RelationshipsTableManager (org.eclipse.persistence.testing.models.jpa.relationships.RelationshipsTableManager)1