blob: 9113fffafc6932da2bf60fc8ac8f14b798bb1c94 [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.inconsistent;
import junit.framework.JUnit4TestAdapter;
import junit.framework.Test;
import org.eclipse.epsilon.hutn.xmi.test.integration.inconsistent.object.InconsistentObjectSuite;
import org.eclipse.epsilon.hutn.xmi.test.integration.inconsistent.slot.InconsistentSlotSuite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({InconsistentObjectSuite.class,
InconsistentSlotSuite.class})
public class InconsistentModelSuite {
public static Test suite() {
return new JUnit4TestAdapter(InconsistentModelSuite.class);
}
}