Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fa2027dbab20b0e9bda698eccd69041c10116d15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*****************************************************************************
 * Copyright (c) 2014 CEA LIST.
 *
 * 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:
 * (CEA LIST) - Initial API and implementation
 *****************************************************************************/

package org.eclipse.papyrus.moka.tests.semantics.composites;

import org.eclipse.papyrus.moka.tests.AbstractMokaLaunchConfigurationDelegate;
import org.eclipse.papyrus.moka.tests.semantics.AbstractMokaTest;

/**
 * Tests execution of all normative PSCS Test suites but Test suite 4, with the Moka synchronous implementation
 * of the normative PSCS specification.
 *
 */
public class CompositeRunAllTestsButTestSuite4 extends AbstractMokaTest {

	public static final String ACTIVITY_NAME = "RunAllTests"; //$NON-NLS-1$

	@Override
	public String getActivityName() {
		return ACTIVITY_NAME;
	}

	@Override
	public AbstractMokaLaunchConfigurationDelegate getLaunchDelegate() {
		return new CompositesEngineLaunchDelegate();
	}

}

Back to the top