Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Kaegi2008-10-31 21:06:34 +0000
committerSimon Kaegi2008-10-31 21:06:34 +0000
commitdda657e84879df85aa4ccfb069c12d4c995c9d52 (patch)
tree5f02ce3d9bc592ad9a6caca0f8863a7ef457e16c /bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/touchpoint/eclipse/UninstallFeatureActionTest.java
parent3418bc38985420692dbab116e717b37ad5cdee17 (diff)
downloadrt.equinox.p2-dda657e84879df85aa4ccfb069c12d4c995c9d52.tar.gz
rt.equinox.p2-dda657e84879df85aa4ccfb069c12d4c995c9d52.tar.xz
rt.equinox.p2-dda657e84879df85aa4ccfb069c12d4c995c9d52.zip
Adding Eclipse Touchpoint + Action Tests:
Part1 - Mainly property action related tests and a few slight refactoring / cleanups
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/touchpoint/eclipse/UninstallFeatureActionTest.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/touchpoint/eclipse/UninstallFeatureActionTest.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/touchpoint/eclipse/UninstallFeatureActionTest.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/touchpoint/eclipse/UninstallFeatureActionTest.java
new file mode 100644
index 000000000..62f4ab786
--- /dev/null
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/touchpoint/eclipse/UninstallFeatureActionTest.java
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2008 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.equinox.p2.tests.touchpoint.eclipse;
+
+import org.eclipse.equinox.p2.tests.AbstractProvisioningTest;
+
+public class UninstallFeatureActionTest extends AbstractProvisioningTest {
+
+ public UninstallFeatureActionTest(String name) {
+ super(name);
+ }
+
+ public UninstallFeatureActionTest() {
+ super("");
+ }
+} \ No newline at end of file

Back to the top