blob: 36642e42f05ed5b22aa52f3b381c5d7ebdf26573 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 The University of York.
* 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:
* Louis Rose - initial API and implementation
******************************************************************************
*
* $Id$
*/
package org.eclipse.epsilon.epl.engine.test.acceptance;
import junit.framework.JUnit4TestAdapter;
import junit.framework.Test;
import org.eclipse.epsilon.epl.engine.test.acceptance.equivalence.EplModuleEquivalenceTests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({
EplTests.class,
EplModuleEquivalenceTests.class
})
public class EplAcceptanceTestSuite {
public static Test suite() {
return new JUnit4TestAdapter(EplAcceptanceTestSuite.class);
}
}