blob: 3c84e79ace1abfc3fdc965ef8357833b0d49ea8d [file] [log] [blame]
/*
* Copyright (c) 2010-2013 Eike Stepper (Berlin, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Eike Stepper - initial API and implementation
* Stefan Winkler - introduced variable mapping strategies
*/
package org.eclipse.emf.cdo.tests.db;
import org.eclipse.emf.cdo.common.CDOCommonRepository.IDGenerationLocation;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* @author Eike Stepper
*/
public class AllTestsDBH2All extends DBConfigs
{
public static Test suite()
{
return new AllTestsDBH2All().getTestSuite();
}
@Override
protected void initConfigSuites(TestSuite parent)
{
addScenarios(parent, IDGenerationLocation.STORE);
addScenarios(parent, IDGenerationLocation.CLIENT);
}
private void addScenarios(TestSuite parent, IDGenerationLocation idGenerationLocation)
{
AllTestsDBH2NonAudit.initConfigSuites(this, parent, idGenerationLocation);
AllTestsDBH2Audit.initConfigSuites(this, parent, idGenerationLocation);
AllTestsDBH2Branching.initConfigSuites(this, parent, idGenerationLocation);
}
}