blob: a414f7a61d1bf510392bc0522635cd594d02e683 [file] [log] [blame]
/**
********************************************************************************
* Copyright (c) 2015-2018 Robert Bosch 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:
* Robert Bosch GmbH - initial API and implementation
********************************************************************************
*/
package org.eclipse.app4mc.amalthea.validations.standard.tests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({
BasicDistributionTests.class,
BasicElementsTests.class,
ConstraintsModelTests.class,
HardwareModelTests.class,
MappingModelTests.class,
SoftwareModelTests.class,
StimuliModelTests.class,
EMFIntrinsicTests.class,
OSModelTests.class
})
public class AllTests {
// empty class to start test suite
}