blob: bc645bcdcfa184a7113c1a4f6dc03c1123a893ef [file] [log] [blame]
/***********************************************************************
* Copyright (c) 2008 by SAP AG, Walldorf.
* 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:
* SAP AG - initial API and implementation
***********************************************************************/
package org.eclipse.jst.jee.model.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* @author Dimitar Giormov
*
*/
public class ModelSuite {
public static Test suite() {
TestSuite suite = new TestSuite(ModelSuite.class.getName());
suite.addTestSuite(JEE5LegacyModelTest.class );
suite.addTestSuite(JEE5ModelTest.class );
suite.addTestSuite(JEE6ModelTest.class );
suite.addTestSuite(ManyToOneRelationTest.class );
suite.addTestSuite(ModelProviderTest.class );
suite.addTestSuite(RegisterMergedModelProviderTest.class );
return suite;
}
}