Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/download/UpdateSiteManager_PdeTest.java')
-rw-r--r--test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/download/UpdateSiteManager_PdeTest.java65
1 files changed, 0 insertions, 65 deletions
diff --git a/test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/download/UpdateSiteManager_PdeTest.java b/test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/download/UpdateSiteManager_PdeTest.java
deleted file mode 100644
index 3d8457e7..00000000
--- a/test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/download/UpdateSiteManager_PdeTest.java
+++ /dev/null
@@ -1,65 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Innoopract Informationssysteme GmbH
- * 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:
- * Innoopract - initial API and implementation
- *******************************************************************************/
-package org.eclipse.epp.packaging.core.download;
-
-import java.io.IOException;
-import java.net.MalformedURLException;
-
-import junit.framework.Assert;
-import junit.framework.TestCase;
-
-import org.eclipse.core.runtime.CoreException;
-import org.eclipse.epp.packaging.core.DummyPackagerConfiguration;
-import org.eclipse.epp.packaging.core.download.UpdateSiteManager;
-import org.eclipse.update.core.IFeature;
-import org.eclipse.update.core.VersionedIdentifier;
-
-/** Test class*/
-public class UpdateSiteManager_PdeTest extends TestCase {
-
- private static final String UPDATESITE_URL
- = "http://download.eclipse.org/eclipse/updates/"; //$NON-NLS-1$
- private static final VersionedIdentifier FEATURE_1
- = new VersionedIdentifier( "org.eclipse.platform", //$NON-NLS-1$
- "2.0.0" ); //$NON-NLS-1$
- private static final VersionedIdentifier FEATURE_2
- = new VersionedIdentifier( "org.eclipse.jdt", //$NON-NLS-1$
- "2.0.0" ); //$NON-NLS-1$
- private DummyPackagerConfiguration configuration;
- private UpdateSiteManager manager;
-
- @Override
- protected void setUp() throws Exception {
- super.setUp();
- this.configuration = new DummyPackagerConfiguration();
- this.configuration.setUpdateSite( UPDATESITE_URL );
- this.configuration.addRequiredFeature( FEATURE_1 );
- this.configuration.addRequiredFeature( FEATURE_2 );
- this.manager = new UpdateSiteManager( this.configuration );
- }
-
- // For some reason, this fails with the local update site.
- public void testGetFeature()
- throws CoreException, MalformedURLException, IOException
- {
- IFeature[] feature = this.manager.getFeatures();
- Assert.assertEquals( 2, feature.length );
- }
-
- public void testAllFeaturesPresent()
- throws MalformedURLException, IOException, CoreException
- {
- this.manager = new UpdateSiteManager( this.configuration );
- Assert.assertTrue( this.manager.areFeaturesPresent( new VersionedIdentifier[]{
- FEATURE_1, FEATURE_2
- } ) );
- }
-}

Back to the top