Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3b6a2081d7e57ec143452fee5c5bd3ad8437f23e (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*****************************************************************************
 * 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$
	
	public String RESOURCES_PATH = "/resources/Test Suite"; //$NON-NLS-1$

	public String MODEL_NAME = "/TestSuite"; //$NON-NLS-1$

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

	@Override
	public String getModelName() {
		return MODEL_NAME;
	}

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

}

Back to the top