X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.tests/src/net/sourceforge/phpeclipse/phpeditor/php/test/DualParseSyntaxErrorTest.java b/net.sourceforge.phpeclipse.tests/src/net/sourceforge/phpeclipse/phpeditor/php/test/DualParseSyntaxErrorTest.java deleted file mode 100644 index 76d4a10..0000000 --- a/net.sourceforge.phpeclipse.tests/src/net/sourceforge/phpeclipse/phpeditor/php/test/DualParseSyntaxErrorTest.java +++ /dev/null @@ -1,167 +0,0 @@ -/* - * Created on 29.02.2004 - * - * To change the template for this generated file go to - * Window - Preferences - Java - Code Generation - Code and Comments - */ -package net.sourceforge.phpeclipse.phpeditor.php.test; - -import java.io.PrintWriter; -import java.io.StringWriter; -import java.util.Locale; - -import net.sourceforge.phpdt.core.compiler.IProblem; -import net.sourceforge.phpdt.core.tests.util.AbstractCompilerTest; -import net.sourceforge.phpdt.core.tests.util.Util; -import net.sourceforge.phpdt.internal.compiler.CompilationResult; -import net.sourceforge.phpdt.internal.compiler.DefaultErrorHandlingPolicies; -import net.sourceforge.phpdt.internal.compiler.batch.CompilationUnit; -import net.sourceforge.phpdt.internal.compiler.env.ICompilationUnit; -import net.sourceforge.phpdt.internal.compiler.parser.UnitParser; -import net.sourceforge.phpdt.internal.compiler.problem.DefaultProblem; -import net.sourceforge.phpdt.internal.compiler.problem.DefaultProblemFactory; -import net.sourceforge.phpdt.internal.compiler.problem.ProblemReporter; -import net.sourceforge.phpeclipse.internal.compiler.ast.CompilationUnitDeclaration; - -/** - * @author khartlage - * - * To change the template for this generated type comment go to - * Window - Preferences - Java - Code Generation - Code and Comments - */ -public class DualParseSyntaxErrorTest extends AbstractCompilerTest { - public static boolean optimizeStringLiterals = false; - - public DualParseSyntaxErrorTest(String testName){ - super(testName); - } - - public void test01() { - String s = - "$login =1; " + - "final class test {\n" + - "\n" + - "private function f1() {\n" + - "\n" + - "}\n" + - "public function f2() {\n" + - "\n" + - " \n" + - "} \n" + - "}"; - - String expectedSyntaxErrorDiagnosis = - ""; - - String testName = ""; - checkParsePHP( - s.toCharArray(), - expectedSyntaxErrorDiagnosis); -// testName); - } - public void test02() { - String s = - "class test { \n"+ - " function f0() \n"+ - " { \n"+ - " } \n"+ - "} \n"; - - String expectedSyntaxErrorDiagnosis = - ""; - - String testName = ""; - checkParsePHP( - s.toCharArray(), - expectedSyntaxErrorDiagnosis); -// testName); - } - public void test03() { - String s = - "$chars = ( isset($HTTP_GET_VARS['chars']) ) ? intval($HTTP_GET_VARS['chars']) : 200;"; - String expectedSyntaxErrorDiagnosis = - ""; - - checkParsePHP( - s.toCharArray(), - expectedSyntaxErrorDiagnosis); -// testName); -} - public void test96() { - String s = "$str = <<foo = 'Foo';\n" - + " $this->bar = array('Bar1', 'Bar2', 'Bar3');\n" + " }\n" - + "}\n" + "\n" + "$foo = new foo();\n" + "$name = 'MyName';\n" + "\n" - + "echo <<foo.\n" - + "Now, I am printing some {$foo->bar[1]}.\n" - + "This should print a capital 'A': \\x41\n" + "EOT;\n"; - String expectedSyntaxErrorDiagnosis = - ""; - - checkParsePHP( - s.toCharArray(), - expectedSyntaxErrorDiagnosis); -// testName); - } - public void test97() { - String s = - "class momo { \n"+ - " function &fetchRow($result, $fetchmode = DB_FETCHMODE_DEFAULT, $rownum=null) \n"+ - " { \n"+ - " } \n"+ - "} \n"; - - String expectedSyntaxErrorDiagnosis = - ""; - - checkParsePHP( - s.toCharArray(), - expectedSyntaxErrorDiagnosis); -// testName); - } - public void test98() { - String s = - "return(array());"+ - "if(!$result = mysql_query($sql)) return(array());\n"; - - String expectedSyntaxErrorDiagnosis = - ""; - - checkParsePHP( - s.toCharArray(), - expectedSyntaxErrorDiagnosis); -// testName); - } - - public void test99() { - String s = - "class test { \n"+ - " murks; \n"+ - " function &fetchRow($result, $fetchmode = DB_FETCHMODE_DEFAULT, $rownum=null) \n"+ - " { \n"+ - " } \n"+ - "} \n"; - - String expectedSyntaxErrorDiagnosis = - "----------\n" + - "1. ERROR in (at line 1)\n" + - " murks; \n" + - " ^^^^^\n" + - "Parser error \"\'public\' \'private\' or \'protected\' modifier expected for field declarations.\"\n" + - "----------\n" + - "2. ERROR in (at line 1)\n" + - " } \n" + - " ^\n" + - "Parser error \"Too many closing \'}\'; end-of-file not reached.\"\n" + - "----------\n"; - - checkParsePHP( - s.toCharArray(), - expectedSyntaxErrorDiagnosis); -// testName); - } -}