Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/full/End2EndTestCurrent.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/full/End2EndTestCurrent.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/full/End2EndTestCurrent.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/full/End2EndTestCurrent.java
index dea0dc4ce..bd94b405f 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/full/End2EndTestCurrent.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/full/End2EndTestCurrent.java
@@ -1,10 +1,10 @@
/*******************************************************************************
- * Copyright (c) 2011 IBM Corporation and others.
+ * Copyright (c) 2011, 2017 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
*******************************************************************************/
@@ -31,6 +31,7 @@ public class End2EndTestCurrent extends AbstractEnd2EndTest {
URI repositoryLocation;
VersionedId platform, platformSource;
+ @Override
protected void validateInstallContent(File installFolder) {
FrameworkAdmin fwkAdmin = getEquinoxFrameworkAdmin();
Manipulator manipulator = fwkAdmin.getManipulator();
@@ -62,6 +63,7 @@ public class End2EndTestCurrent extends AbstractEnd2EndTest {
}
+ @Override
protected URI getRepositoryLocation() {
if (repositoryLocation == null) {
String repository = TestActivator.getContext().getProperty("org.eclipse.equinox.p2.tests.current.build.repo");
@@ -87,6 +89,7 @@ public class End2EndTestCurrent extends AbstractEnd2EndTest {
return (IInstallableUnit) result.iterator().next();
}
+ @Override
protected VersionedId getPlatform() {
if (platform == null) {
IInstallableUnit iu = getIU("org.eclipse.platform.ide");
@@ -95,6 +98,7 @@ public class End2EndTestCurrent extends AbstractEnd2EndTest {
return platform;
}
+ @Override
protected VersionedId getPlatformSource() {
if (platformSource == null) {
IInstallableUnit iu = getIU("org.eclipse.platform.source.feature.group");

Back to the top