use of org.eclipse.persistence.testing.models.events.EventHookSystem in project eclipselink by eclipse-ee4j.
the class FeatureTestModel method addRequiredSystems.
@Override
public void addRequiredSystems() {
addRequiredSystem(new EmployeeSystem());
addRequiredSystem(new org.eclipse.persistence.testing.models.aggregate.AggregateSystem());
addRequiredSystem(new InheritanceSystem());
addRequiredSystem(new InsuranceSystem());
addRequiredSystem(new OwnershipSystem());
addRequiredSystem(new LegacySystem());
addRequiredSystem(new EventHookSystem());
addRequiredSystem(new ProjectSystem());
addRequiredSystem(new IdentitySystem());
addRequiredSystem(new org.eclipse.persistence.testing.models.collections.CollectionsSystem());
addRequiredSystem(new org.eclipse.persistence.testing.models.mapping.MappingSystem());
addRequiredSystem(new org.eclipse.persistence.testing.models.sequencing.SequenceTestSystem());
addRequiredSystem(new org.eclipse.persistence.testing.tests.queries.report.ReportQuerySystem());
addRequiredSystem(new org.eclipse.persistence.testing.tests.queries.options.QueryOptionSystem());
addRequiredSystem(new org.eclipse.persistence.testing.models.bigbad.BigBadSystem());
addRequiredSystem(new org.eclipse.persistence.testing.models.vehicle.VehicleSystem());
// Force field names to upper case for custom SQL tests on postgres.
if (getSession().getPlatform().isPostgreSQL()) {
getSession().getPlatform().setShouldForceFieldNamesToUpperCase(true);
}
}
use of org.eclipse.persistence.testing.models.events.EventHookSystem in project eclipselink by eclipse-ee4j.
the class SimultaneousTestsModel method addRequiredSystems.
@Override
public void addRequiredSystems() {
addRequiredSystem(new EmployeeSystem());
addRequiredSystem(new EventHookSystem());
addRequiredSystem(new UOWSystem());
}
Aggregations