blob: 01ea6f2dd38d02a04399a28ae739740c11908830 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.osgi.tests.resource;
import org.eclipse.osgi.tests.OSGiTest;
import org.eclipse.osgi.tests.OSGiTestsActivator;
import org.eclipse.osgi.tests.bundles.BundleInstaller;
import org.osgi.framework.InvalidSyntaxException;
public abstract class AbstractResourceTest extends OSGiTest {
protected BundleInstaller installer;
public AbstractResourceTest() {
super();
}
public AbstractResourceTest(String name) {
super(name);
}
protected void setUp() throws Exception {
super.setUp();
try {
installer = new BundleInstaller(OSGiTestsActivator.TEST_FILES_ROOT + "wiringTests/bundles", OSGiTestsActivator.getContext()); //$NON-NLS-1$
} catch (InvalidSyntaxException e) {
fail("Failed to create bundle installer", e); //$NON-NLS-1$
}
}
protected void tearDown() throws Exception {
installer.shutdown();
super.tearDown();
}
}