blob: bd61f18f6d997bbe2e2e1c60343bdfb778a16a4d [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
******************************************************************************/
package org.eclipse.epsilon.egl.test;
import junit.framework.JUnit4TestAdapter;
import junit.framework.Test;
import org.eclipse.epsilon.egl.engine.traceability.fine.test.acceptance.EglFineGrainedTraceabilityAcceptanceTestSuite;
import org.eclipse.epsilon.egl.engine.traceability.fine.test.unit.EglFineGrainedTraceabilityUnitTestSuite;
import org.eclipse.epsilon.egl.test.acceptance.EglAcceptanceTestSuite;
import org.eclipse.epsilon.egl.test.unit.EglUnitTestSuite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({EglUnitTestSuite.class,
EglFineGrainedTraceabilityUnitTestSuite.class,
EglAcceptanceTestSuite.class,
EglFineGrainedTraceabilityAcceptanceTestSuite.class})
public class EglTestSuite {
public static Test suite() {
return new JUnit4TestAdapter(EglTestSuite.class);
}
}