blob: 47363cebf5933afef0a3a0776b7eb86b92d4d453 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2009 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.utility.tests.internal.model;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.jpt.utility.tests.internal.model.listener.JptUtilityModelListenerTests;
import org.eclipse.jpt.utility.tests.internal.model.value.JptUtilityModelValueTests;
public class JptUtilityModelTests {
public static Test suite() {
TestSuite suite = new TestSuite(JptUtilityModelTests.class.getPackage().getName());
suite.addTest(JptUtilityModelListenerTests.suite());
suite.addTest(JptUtilityModelValueTests.suite());
suite.addTestSuite(ChangeSupportTests.class);
suite.addTestSuite(NewEventTests.class);
return suite;
}
private JptUtilityModelTests() {
super();
throw new UnsupportedOperationException();
}
}