Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.wst.jsdt.core.tests.compiler/src/org/eclipse/wst/jsdt/core/tests/compiler/regression/BasicErrorTests.java')
-rw-r--r--tests/org.eclipse.wst.jsdt.core.tests.compiler/src/org/eclipse/wst/jsdt/core/tests/compiler/regression/BasicErrorTests.java57
1 files changed, 0 insertions, 57 deletions
diff --git a/tests/org.eclipse.wst.jsdt.core.tests.compiler/src/org/eclipse/wst/jsdt/core/tests/compiler/regression/BasicErrorTests.java b/tests/org.eclipse.wst.jsdt.core.tests.compiler/src/org/eclipse/wst/jsdt/core/tests/compiler/regression/BasicErrorTests.java
deleted file mode 100644
index 7c835d4..0000000
--- a/tests/org.eclipse.wst.jsdt.core.tests.compiler/src/org/eclipse/wst/jsdt/core/tests/compiler/regression/BasicErrorTests.java
+++ /dev/null
@@ -1,57 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005, 2007 IBM Corporation and others.
- * 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:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.core.tests.compiler.regression;
-
-import org.eclipse.wst.jsdt.internal.compiler.ast.CompilationUnitDeclaration;
-
-public class BasicErrorTests extends AbstractRegressionTest {
-
- public BasicErrorTests(String name) {
- super(name);
-
- }
- public void test001() {
- CompilationUnitDeclaration declaration = this.runParseTest(
- "function foo(){\n" +
- " var c;\n" +
- " var d;\n" +
- " c.\n" +
- "}\n",
- "X.js",
- "function foo(){\n" +
- " var c;\n" +
- " var d;\n" +
- " c.\n" +
- "\n"
-
- );
- }
-
- public void test002() {
- CompilationUnitDeclaration declaration = this.runParseTest(
- "package p;\n" +
- "/**\n" +
- " * @category test\n" +
- " */\n" +
- "public class Y {\n" +
- "}\n",
- "X.js",
- "function foo(){\n" +
- " var c;\n" +
- " var d;\n" +
- " c.\n" +
- "\n"
-
- );
- }
-
-
-}

Back to the top