Moved the code in the "tests" plugin (plural) to the "test" fragment (singular)....
[phpeclipse.git] / net.sourceforge.phpeclipse.tests / src / net / sourceforge / phpeclipse / tests / parser / PHPParserTestSuite.java
diff --git a/net.sourceforge.phpeclipse.tests/src/net/sourceforge/phpeclipse/tests/parser/PHPParserTestSuite.java b/net.sourceforge.phpeclipse.tests/src/net/sourceforge/phpeclipse/tests/parser/PHPParserTestSuite.java
deleted file mode 100644 (file)
index a1dcd97..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-package net.sourceforge.phpeclipse.tests.parser;
-
-/*******************************************************************************
- * Copyright (c) 2002 www.phpeclipse.de All rights
- * reserved. This program and the accompanying materials are made available
- * under the terms of the Common Public License v1.0 which accompanies this
- * distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html
- ******************************************************************************/
-
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * PHPeclipse Parser Test Suite Runs all PHP parser test cases
- * 
- */
-public class PHPParserTestSuite extends TestCase {
-
-       public PHPParserTestSuite(String name) {
-               super(name);
-       }
-
-       public static Test suite() {
-               TestSuite suite = new TestSuite("PHPeclipse Parser Test Suite");
-               suite.addTest(new TestSuite(PHPParserTestCase.class));
-               suite.addTest(new TestSuite(ShortTagTestCase.class));
-               suite.addTest(new TestSuite(PHPManualTestCase.class));
-               suite.addTest(new TestSuite(OverlibTestCase.class));
-               suite.addTest(new TestSuite(SmartyCompilerTestCase.class));
-               return suite;
-
-       }
-
-}