blob: 04cf2bc85de1003899bae06bc7705befac271d54 [file] [log] [blame]
/*
* Copyright 2000-2012 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.lang.java.parser.declarationParsing;
import com.intellij.lang.java.parser.JavaParsingTestCase;
public class ClassParsingTest extends JavaParsingTestCase {
public ClassParsingTest() {
super("parser-full/declarationParsing/class");
}
public void testNoClass() { doTest(true); }
public void testNoType() { doTest(true); }
public void testSemicolon() { doTest(true); }
public void testSemicolon2() { doTest(true); }
public void testParametrizedClass() { doTest(true); }
public void testPines() { doTest(true); }
public void testForError() { doTest(true); }
public void testEnum1() { doTest(true); }
public void testEnum2() { doTest(true); }
public void testEnumWithConstants1() { doTest(true); }
public void testEnumWithConstants2() { doTest(true); }
public void testEnumWithConstants3() { doTest(true); }
public void testEnumWithConstants4() { doTest(true); }
public void testEnumWithConstants5() { doTest(true); }
public void testEnumWithConstants6() { doTest(true); }
public void testEnumWithInitializedConstants() { doTest(true); }
public void testEnumWithAnnotatedConstants() { doTest(true); }
public void testEnumWithImport() { doTest(true); }
public void testEnumWithoutConstants() { doTest(true); }
public void testEmptyImportList() { doTest(true); }
public void testLongClass() { doTest(false); }
public void testIncompleteAnnotation() { doTest(true); }
public void testExtraOpeningBraceInMethod() { doTest(true); }
public void testExtraClosingBraceInMethod() { doTest(true); }
public void testErrors0() { doTest(true); }
public void testErrors1() { doTest(true); }
public void testErrors2() { doTest(true); }
public void testErrors3() { doTest(true); }
public void testErrors4() { doTest(true); }
public void testErrors5() { doTest(true); }
}