Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 877062acd953ae2a2a88862b4e7f8344ec585bf8 (plain) (tree)
1
2
                                                                                
                                                       
















                                                                                       

                                                                                      
                                                                       


                             
/*******************************************************************************
 * Copyright (c) 2013, 2015 IBM Corporation 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.osgi.tests.hooks.framework;

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

public class AllFrameworkHookTests {
	public static Test suite() {
		TestSuite suite = new TestSuite(AllFrameworkHookTests.class.getName());
		suite.addTest(new TestSuite(StorageHookTests.class));
		suite.addTest(new TestSuite(ClassLoaderHookTests.class));
		suite.addTest(new TestSuite(BundleFileWrapperFactoryHookTests.class));
		suite.addTest(new TestSuite(ContextFinderTests.class));
		return suite;
	}
}

Back to the top