Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7f46fee6751449211fa720ea74dad705aadf13e2 (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
/*******************************************************************************
 * 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));
		return suite;
	}
}

Back to the top