blob: 4543c83443a517b1118dee1dadc95c993dc78cbc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2018 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.core.tests.runtime;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
public class URLTest extends RuntimeTest {
public URLTest(String name) {
super(name);
}
public void testPlatformPlugin() throws IOException {
URL url = new URL("platform:/plugin/org.eclipse.core.tests.runtime/plugin.xml");
InputStream is = url.openStream();
is.close();
}
}