Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5da14ece0b1f30eb14be900d485df7130372539d (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/**
 * <copyright>
 *
 * Copyright (c) 2005, 2006 Springsite BV (The Netherlands) and others
 * 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:
 *   Martin Taal
 * </copyright>
 *
 * $Id: AllTests.java,v 1.10 2006/09/07 22:29:08 mtaal Exp $
 */

package org.eclipse.emf.teneo.hibernate.test.emf.sample;

import junit.framework.Test;
import junit.framework.TestSuite;

import org.eclipse.emf.teneo.hibernate.test.HibernateTestbed;
import org.eclipse.emf.teneo.test.conf.MultiCfgTestSuite;
import org.eclipse.emf.teneo.test.emf.sample.CatalogResourceAction;
import org.eclipse.emf.teneo.test.emf.sample.DynamicAction;
import org.eclipse.emf.teneo.test.emf.sample.ForumAction;
import org.eclipse.emf.teneo.test.emf.sample.InventoryAction;
import org.eclipse.emf.teneo.test.emf.sample.LibraryAction;
import org.eclipse.emf.teneo.test.emf.sample.LibraryColLengthAction;
import org.eclipse.emf.teneo.test.emf.sample.LibraryGlobalEagerAction;
import org.eclipse.emf.teneo.test.emf.sample.LibraryNonResolvingAction;
import org.eclipse.emf.teneo.test.emf.sample.LibraryQualifyActionHB;
import org.eclipse.emf.teneo.test.emf.sample.LibraryResourceAction;
import org.eclipse.emf.teneo.test.emf.sample.LibraryResourceCutPasteAction;
import org.eclipse.emf.teneo.test.emf.sample.LibrarySerializationAction;
import org.eclipse.emf.teneo.test.emf.sample.PlayAction;
import org.eclipse.emf.teneo.test.emf.sample.PrimerPOAction;
import org.eclipse.emf.teneo.test.emf.sample.ProductAction;
import org.eclipse.emf.teneo.test.emf.sample.SunBooksAction;
import org.eclipse.emf.teneo.test.emf.sample.WorkFlowAction;

/**
 * All sample tests
 * 
 * @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
 * @version $Revision: 1.10 $
 */
public class AllTests {

	public static Test suite() {
		TestSuite suite = new MultiCfgTestSuite("Test for org.eclipse.emf.teneo.hibernate.test.emf.sample", HibernateTestbed.instance()
				.getConfigurations());
		suite.addTestSuite(LibrarySerializationAction.class);
		suite.addTestSuite(DynamicAction.class);

		suite.addTestSuite(LibraryAction.class);
		//	suite.addTestSuite(ExtLibraryAction.class);
		suite.addTestSuite(CapaTest.class);

		suite.addTestSuite(DetachFromSessionAction.class);
		
		suite.addTestSuite(LibraryNonResolvingAction.class);

		suite.addTestSuite(AccountingTest.class);
		suite.addTestSuite(SunBooksAction.class);
		suite.addTestSuite(LibraryTest.class);
		suite.addTestSuite(SchoolLibraryTest.class);
		//suite.addTestSuite(WoWAction.class);
		suite.addTestSuite(CatalogTest.class);
		suite.addTestSuite(InventoryAction.class);
		suite.addTestSuite(LibraryColLengthAction.class);
		suite.addTestSuite(LibraryResourceCutPasteAction.class);
		suite.addTestSuite(LibraryValidateResourceTest.class);
		suite.addTestSuite(CatalogResourceAction.class);

		suite.addTestSuite(LibraryQualifyActionHB.class);
		suite.addTestSuite(LibraryGlobalEagerAction.class);
		suite.addTestSuite(LibraryResourceAction.class);
		suite.addTestSuite(PlayAction.class);
		suite.addTestSuite(ExtendedPO2Test.class);
		suite.addTestSuite(PrimerPOAction.class);
		suite.addTestSuite(ProductAction.class);
		suite.addTestSuite(WorkFlowAction.class);
		suite.addTestSuite(ForumAction.class);

		return suite;
	}
}

Back to the top