Fix bug #1385272: Parsing of short open tags not fully compatible to PHP parse
[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
16  * Runs all PHP parser test cases
17  *
18  */
19 public class PHPParserTestSuite extends TestCase {
20
21         public PHPParserTestSuite(String name) {
22                 super(name);
23         }
24
25         public static Test suite() {
26                 TestSuite suite = new TestSuite("PHPeclipse Parser Test Suite");
27                 suite.addTest(new TestSuite(PHPParserTestCase.class));
28                 suite.addTest(new TestSuite(ShortTagTestCase.class));
29                 suite.addTest(new TestSuite(PHPManualTestCase.class));
30                 suite.addTest(new TestSuite(OverlibTestCase.class));
31                 suite.addTest(new TestSuite(SmartyCompilerTestCase.class));
32                 return suite;
33
34         }
35
36 }