A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.tests / src / net / sourceforge / phpeclipse / tests / parser / PHPParserTestSuite.java
1 package net.sourceforge.phpeclipse.tests.parser;
2
3 /*******************************************************************************
4  * Copyright (c) 2002 www.phpeclipse.de All rights
5  * reserved. This program and the accompanying materials are made available
6  * under the terms of the Common Public License v1.0 which accompanies this
7  * distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html
8  ******************************************************************************/
9
10 import junit.framework.Test;
11 import junit.framework.TestCase;
12 import junit.framework.TestSuite;
13
14 /**
15  * PHPeclipse Parser Test Suite Runs all PHP parser test cases
16  * 
17  */
18 public class PHPParserTestSuite extends TestCase {
19
20         public PHPParserTestSuite(String name) {
21                 super(name);
22         }
23
24         public static Test suite() {
25                 TestSuite suite = new TestSuite("PHPeclipse Parser Test Suite");
26                 suite.addTest(new TestSuite(PHPParserTestCase.class));
27                 suite.addTest(new TestSuite(ShortTagTestCase.class));
28                 suite.addTest(new TestSuite(PHPManualTestCase.class));
29                 suite.addTest(new TestSuite(OverlibTestCase.class));
30                 suite.addTest(new TestSuite(SmartyCompilerTestCase.class));
31                 return suite;
32
33         }
34
35 }