uidesigner/com.nokia.sdt.emf.dm.tests/src/com/nokia/sdt/emf/dm/tests/AllTests.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 (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
cawthron
parents:
diff changeset
     3
* All rights reserved.
cawthron
parents:
diff changeset
     4
* This component and the accompanying materials are made available
cawthron
parents:
diff changeset
     5
* under the terms of the License "Eclipse Public License v1.0"
cawthron
parents:
diff changeset
     6
* which accompanies this distribution, and is available
cawthron
parents:
diff changeset
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
cawthron
parents:
diff changeset
     8
*
cawthron
parents:
diff changeset
     9
* Initial Contributors:
cawthron
parents:
diff changeset
    10
* Nokia Corporation - initial contribution.
cawthron
parents:
diff changeset
    11
*
cawthron
parents:
diff changeset
    12
* Contributors:
cawthron
parents:
diff changeset
    13
*
cawthron
parents:
diff changeset
    14
* Description: 
cawthron
parents:
diff changeset
    15
*
cawthron
parents:
diff changeset
    16
*/
cawthron
parents:
diff changeset
    17
package com.nokia.sdt.emf.dm.tests;
cawthron
parents:
diff changeset
    18
cawthron
parents:
diff changeset
    19
import junit.framework.Test;
cawthron
parents:
diff changeset
    20
import junit.framework.TestSuite;
cawthron
parents:
diff changeset
    21
cawthron
parents:
diff changeset
    22
public class AllTests {
cawthron
parents:
diff changeset
    23
cawthron
parents:
diff changeset
    24
	public static Test suite() {
cawthron
parents:
diff changeset
    25
		TestSuite suite = new TestSuite("Test for com.nokia.sdt.emf.dm.tests");
cawthron
parents:
diff changeset
    26
cawthron
parents:
diff changeset
    27
		// The EMF-generated tests don't currently have
cawthron
parents:
diff changeset
    28
		// useful tests and will just generated warnings.
cawthron
parents:
diff changeset
    29
		// These are DmTests.suite(), dmAllTests.suite(),
cawthron
parents:
diff changeset
    30
		// DataModelAllTests.suite(), IPropertyValueTest,
cawthron
parents:
diff changeset
    31
		// IPropertyContainerTest, IDesignerDataTest
cawthron
parents:
diff changeset
    32
cawthron
parents:
diff changeset
    33
		//$JUnit-BEGIN$
cawthron
parents:
diff changeset
    34
		suite.addTestSuite(NewEmptyDataModelTest.class);
cawthron
parents:
diff changeset
    35
		suite.addTestSuite(NodeCopierTest.class);
cawthron
parents:
diff changeset
    36
		suite.addTestSuite(PropertyContainerCopierTest.class);
cawthron
parents:
diff changeset
    37
		suite.addTestSuite(ClipboardTests.class);
cawthron
parents:
diff changeset
    38
		suite.addTestSuite(FormatReadTests.class);
cawthron
parents:
diff changeset
    39
		suite.addTestSuite(NewRootDataModelTest.class);
cawthron
parents:
diff changeset
    40
		suite.addTestSuite(INodeTest.class);
cawthron
parents:
diff changeset
    41
		suite.addTestSuite(ILocalizedStringBundleTest.class);
cawthron
parents:
diff changeset
    42
		suite.addTestSuite(LocalizedStringTest.class);
cawthron
parents:
diff changeset
    43
		suite.addTestSuite(ILocalizedStringTableTest.class);
cawthron
parents:
diff changeset
    44
		suite.addTestSuite(RemoveChildInstancesCommandTest.class);
cawthron
parents:
diff changeset
    45
		suite.addTestSuite(FormatWriteTests.class);
cawthron
parents:
diff changeset
    46
		suite.addTestSuite(PropertyDataModelTest.class);
cawthron
parents:
diff changeset
    47
		//$JUnit-END$
cawthron
parents:
diff changeset
    48
		
cawthron
parents:
diff changeset
    49
		suite.addTestSuite(ComponentManifestTest.class);
cawthron
parents:
diff changeset
    50
		suite.addTestSuite(ReferencePropertyPromotionTest.class);
cawthron
parents:
diff changeset
    51
cawthron
parents:
diff changeset
    52
		return suite;
cawthron
parents:
diff changeset
    53
	}
cawthron
parents:
diff changeset
    54
cawthron
parents:
diff changeset
    55
}