Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f1dddb37ffe44302ce7116f37dfb9a401156f67f (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 normative PSCS Test suite 4, with the Moka synchronous implementation
 * of the normative PSCS specification.
 *
 */
public class CompositeRunTestSuite4 extends AbstractMokaTest {

	protected final String ACTIVITY_NAME = "Run Test Suite 4"; //$NON-NLS-1$

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

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

}

Back to the top