blob: 843b2ca93e3657f0ade2c22b6ce008d3fed361b8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014-2016 IncQuery Labs Ltd.
* 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:
* Akos Horvath, Abel Hegedus, Akos Menyhert, Tamas Borbas, Marton Bur,
* Zoltan Ujhelyi, Daniel Segesdi, Gabor Bergmann
* - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra.examples.cps.tests
import org.junit.runner.RunWith
import org.junit.runners.Suite
import org.junit.runners.Suite.SuiteClasses
@RunWith(Suite)
@SuiteClasses(#[
AnonymousVariablesCpsTest,
APICpsTest,
BasicCpsTest,
FlattenedPatternCallCpsTest,
FunctionalDependencyAnalysisTest,
ModelManipulationCpsTest,
RecursionCpsTest,
TestingFrameworkTest,
VariableEqualityCpsTest,
BaseIndexerTest,
BaseIndexerUnsetTest,
AggregatorTest,
AggregatorComparisonTest,
ModelManipulationSumAggregatorTest,
ModelManipulationMinMaxAggregatorTest,
ModelManipulationAvgAggregatorTest,
ModelManipulationTrickyJoinTest,
LocalSearchPlanCostOverflowTest,
LiteralValuesTest,
DanglingTest,
DRedTest,
TransitiveClosureTest,
CrossResourceContainmentTest,
CrossResourceReferenceTest,
LongLiteralTest
])
class AllCpsTests {}