Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c2c5d5cdd33a4bc821704d3088ee4413ef61ebc2 (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
/**
 */
package org.eclipse.papyrus.infra.core.serviceregistry.servicedescriptors.tests;

import junit.framework.Test;
import junit.framework.TestSuite;
import junit.textui.TestRunner;

/**
 * <!-- begin-user-doc -->
 * A test suite for the '<em><b>Servicedescriptors</b></em>' model.
 * <!-- end-user-doc -->
 *
 * @generated
 */
public class ServicedescriptorsAllTests extends TestSuite {

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 *
	 * @generated
	 */
	public static void main(String[] args) {
		TestRunner.run(suite());
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 *
	 * @generated
	 */
	public static Test suite() {
		TestSuite suite = new ServicedescriptorsAllTests("Servicedescriptors Tests");
		suite.addTest(ServicedescriptorsTests.suite());
		return suite;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 *
	 * @generated
	 */
	public ServicedescriptorsAllTests(String name) {
		super(name);
	}

} // ServicedescriptorsAllTests

Back to the top