Skip to main content
summaryrefslogblamecommitdiffstats
blob: ebd633040134b21caacef5f69567e47feb5db579 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                                                
                                                        








                                                                                

                                 

                                                                                          



                                    
                                                                                                   

                                                                    

                                                                 
                                                             
                                                        
                                                                         









                                                          
/*******************************************************************************
 * 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);
		suite.addTestSuite(SingleAspectChangeSupportTests.class);

		return suite;
	}

	private JptUtilityModelTests() {
		super();
		throw new UnsupportedOperationException();
	}

}

Back to the top