mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 19:28:23 +07:00
46 lines
2.8 KiB
Java
46 lines
2.8 KiB
Java
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
|
package com.intellij.java.parser.partial;
|
|
|
|
import com.intellij.java.parser.AbstractBasicJavaParsingTestCase;
|
|
import com.intellij.java.parser.AbstractBasicJavaParsingTestConfigurator;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
public abstract class AbstractBasicFileParserTest extends AbstractBasicJavaParsingTestCase {
|
|
public AbstractBasicFileParserTest(@NotNull AbstractBasicJavaParsingTestConfigurator configurator) {
|
|
super("parser-partial/files", configurator);
|
|
}
|
|
|
|
public void testEmptyFile() { doParserTest(""); }
|
|
|
|
public void testPackage() { doParserTest("package a.b.c;"); }
|
|
public void testAnnotatedPackage() { doParserTest("@Anno package a.b.c;"); }
|
|
public void testUnclosedPackage0() { doParserTest("package"); }
|
|
public void testUnclosedPackage1() { doParserTest("package a."); }
|
|
|
|
public void testImport0() { doParserTest("import java.util.*;"); }
|
|
public void testImport1() { doParserTest("import java.util.Arrays;"); }
|
|
public void testStaticImport0() { doParserTest("import static java.util.Arrays.*;"); }
|
|
public void testStaticImport1() { doParserTest("import static java.util.Arrays.sort;"); }
|
|
public void testUnclosedImport0() { doParserTest("import"); }
|
|
public void testUnclosedImport1() { doParserTest("import java.awt.*"); }
|
|
public void testUnclosedImport2() { doParserTest("import java.awt."); }
|
|
public void testUnclosedImport3() { doParserTest("import static a"); }
|
|
public void testImportBrokenFromBeginning() { doParserTest("xx import a;"); }
|
|
|
|
public void testExtraSemicolons() { doParserTest("package p;;\nimport a;;\nclass C{};"); }
|
|
public void testFileWithClass() { doParserTest("package a;\nimport b;\npublic class C { }\nclass D { }"); }
|
|
|
|
public void testBindBefore0() { doParserTest("class A{\n // comment\n int field;\n}"); }
|
|
public void testBindBefore1() { doParserTest("class A{\n // comment\n\n int field;\n}"); }
|
|
public void testBindBefore2() { doParserTest("class A{ // comment\n int field;\n}"); }
|
|
public void testBindBefore3() { doParserTest("class A{// comment\n int field;\n}"); }
|
|
public void testBindBefore4() { doParserTest("class A{\n // comment 1\n // comment 2\n // comment 3\n int field;\n}"); }
|
|
|
|
public void testBindDocComment0() { doParserTest("/** class comment */\nclass A { }"); }
|
|
public void testBindDocComment1() { doParserTest("/** file comment */\npackage a;\nclass A { }"); }
|
|
public void testBindDocComment2() { doParserTest("/** file comment */\nimport a;\nclass A { }"); }
|
|
public void testBindDocComment3() { doParserTest("class A {\n /** field comment */\n int f;\n}"); }
|
|
public void testBindDocComment4() { doParserTest("class A {\n /** field comment */\n// field comment\n int f;\n}"); }
|
|
|
|
protected abstract void doParserTest(String text);
|
|
} |