uidesigner/com.nokia.sdt.emf.dm.tests/src/com/nokia/sdt/emf/dm/tests/dmAllTests.java
author timkelly
Mon, 06 Apr 2009 14:15:39 -0500
changeset 52 e26ecc088f24
parent 2 d760517a8095
permissions -rw-r--r--
Add tests for regressing bug 8804.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
cawthron
parents:
diff changeset
     1
/**
cawthron
parents:
diff changeset
     2
 * <copyright>
cawthron
parents:
diff changeset
     3
 * </copyright>
cawthron
parents:
diff changeset
     4
 *
cawthron
parents:
diff changeset
     5
 * $Id$
cawthron
parents:
diff changeset
     6
 */
cawthron
parents:
diff changeset
     7
package com.nokia.sdt.emf.dm.tests;
cawthron
parents:
diff changeset
     8
cawthron
parents:
diff changeset
     9
import junit.framework.Test;
cawthron
parents:
diff changeset
    10
import junit.framework.TestSuite;
cawthron
parents:
diff changeset
    11
import junit.textui.TestRunner;
cawthron
parents:
diff changeset
    12
cawthron
parents:
diff changeset
    13
/**
cawthron
parents:
diff changeset
    14
 * <!-- begin-user-doc -->
cawthron
parents:
diff changeset
    15
 * A test suite for the '<em><b>dm</b></em>' model.
cawthron
parents:
diff changeset
    16
 * <!-- end-user-doc -->
cawthron
parents:
diff changeset
    17
 * @generated
cawthron
parents:
diff changeset
    18
 */
cawthron
parents:
diff changeset
    19
public class dmAllTests extends TestSuite {
cawthron
parents:
diff changeset
    20
	/**
cawthron
parents:
diff changeset
    21
	 * <!-- begin-user-doc -->
cawthron
parents:
diff changeset
    22
	 * <!-- end-user-doc -->
cawthron
parents:
diff changeset
    23
	 * @generated
cawthron
parents:
diff changeset
    24
	 */
cawthron
parents:
diff changeset
    25
	public static void main(String[] args) {
cawthron
parents:
diff changeset
    26
		TestRunner.run(suite());
cawthron
parents:
diff changeset
    27
	}
cawthron
parents:
diff changeset
    28
cawthron
parents:
diff changeset
    29
	/**
cawthron
parents:
diff changeset
    30
	 * <!-- begin-user-doc -->
cawthron
parents:
diff changeset
    31
	 * <!-- end-user-doc -->
cawthron
parents:
diff changeset
    32
	 * @generated
cawthron
parents:
diff changeset
    33
	 */
cawthron
parents:
diff changeset
    34
	public static Test suite() {
cawthron
parents:
diff changeset
    35
		TestSuite suite = new dmAllTests("dm Tests");
cawthron
parents:
diff changeset
    36
		suite.addTest(DmTests.suite());
cawthron
parents:
diff changeset
    37
		return suite;
cawthron
parents:
diff changeset
    38
	}
cawthron
parents:
diff changeset
    39
cawthron
parents:
diff changeset
    40
	/**
cawthron
parents:
diff changeset
    41
	 * <!-- begin-user-doc -->
cawthron
parents:
diff changeset
    42
	 * <!-- end-user-doc -->
cawthron
parents:
diff changeset
    43
	 * @generated
cawthron
parents:
diff changeset
    44
	 */
cawthron
parents:
diff changeset
    45
	public dmAllTests(String name) {
cawthron
parents:
diff changeset
    46
		super(name);
cawthron
parents:
diff changeset
    47
	}
cawthron
parents:
diff changeset
    48
cawthron
parents:
diff changeset
    49
} //dmAllTests