blob: 845015b0c8a5ee43ff6562460fb06e0d23d14530 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 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
******************************************************************************/
package org.eclipse.epsilon.emc.hutn.test;
import junit.framework.JUnit4TestAdapter;
import junit.framework.Test;
import org.eclipse.epsilon.emc.hutn.HutnModelTests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({HutnModelTests.class})
public class HutnEmcDriverTestSuite {
public static Test suite() {
return new JUnit4TestAdapter(HutnEmcDriverTestSuite.class);
}
}