Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Knauer2008-05-22 14:58:41 +0000
committerMarkus Knauer2008-05-22 14:58:41 +0000
commit4bc8ea2303459ddc902e5bd8993fc232bf556da0 (patch)
tree8f3fef2c3bf4cc6b10040cf4b6a07a2b38fc327a /test/org.eclipse.epp.packaging.core.test
parentb418f6ff280c2a3c7f6121b31e9c895c458b7c48 (diff)
downloadorg.eclipse.epp.packages-4bc8ea2303459ddc902e5bd8993fc232bf556da0.tar.gz
org.eclipse.epp.packages-4bc8ea2303459ddc902e5bd8993fc232bf556da0.tar.xz
org.eclipse.epp.packages-4bc8ea2303459ddc902e5bd8993fc232bf556da0.zip
test removed (not valid any more - refactored long ago)
Diffstat (limited to 'test/org.eclipse.epp.packaging.core.test')
-rw-r--r--test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/assembly/PluginUtils_PdeTest.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/assembly/PluginUtils_PdeTest.java b/test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/assembly/PluginUtils_PdeTest.java
deleted file mode 100644
index 1b4adcb4..00000000
--- a/test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/assembly/PluginUtils_PdeTest.java
+++ /dev/null
@@ -1,26 +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.assembly;
-
-import java.io.File;
-
-import junit.framework.Assert;
-import junit.framework.TestCase;
-
-/** Test class*/
-public class PluginUtils_PdeTest extends TestCase {
-
- public void testFindRuntimeCore() throws Exception {
- String pluginPath = PluginUtils.getPluginPath( "org.eclipse.core.runtime" ); //$NON-NLS-1$
- Assert.assertNotNull( pluginPath );
- Assert.assertTrue( new File( pluginPath ).exists() );
- }
-} \ No newline at end of file

Back to the top