blob: a437481bcc2bead5a475c9be4cba390b16d36ecc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Louis Rose - initial API and implementation
******************************************************************************
*
* $Id$
*/
package org.eclipse.epsilon.hutn.xmi.test.integration;
import junit.framework.JUnit4TestAdapter;
import junit.framework.Test;
import org.eclipse.epsilon.hutn.xmi.test.integration.consistent.ConsistentModelSuite;
import org.eclipse.epsilon.hutn.xmi.test.integration.identifiers.IdentifiersBasedOnNames;
import org.eclipse.epsilon.hutn.xmi.test.integration.identifiers.IdentifiersBasedOnTypes;
import org.eclipse.epsilon.hutn.xmi.test.integration.inconsistent.InconsistentModelSuite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({ConsistentModelSuite.class, InconsistentModelSuite.class,
IdentifiersBasedOnTypes.class, IdentifiersBasedOnNames.class})
public class HutnXmiIntegrationTestSuite {
public static Test suite() {
return new JUnit4TestAdapter(HutnXmiIntegrationTestSuite.class);
}
}