blob: 2c6e4e93bd482bbd5a684e197e507ff9ca32f4a1 [file] [log] [blame]
/**
********************************************************************************
* Copyright (c) 2016 Timing-Architects Embedded Systems GmbH and others.
*
* 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/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Timing-Architects Embedded Systems GmbH - initial API and implementation
********************************************************************************
*/
package org.eclipse.app4mc.amalthea.validations.ta.tests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({
TABasicModelValidatorTests.class,
TAConstraintsModelValidatorTests.class,
TAHardwareModelValidatorTests.class,
TAMiscModelValidatorTests.class,
TAStimuliModelValidatorTests.class,
TASoftwareModelValidatorTests.class })
public class AllTests {
// run all tests
}