mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
112 lines
5.4 KiB
Java
112 lines
5.4 KiB
Java
/*
|
|
* Copyright 2000-2017 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.codeInsight.daemon.lambda;
|
|
|
|
import com.intellij.codeInsight.daemon.LightDaemonAnalyzerTestCase;
|
|
import com.intellij.codeInspection.deadCode.UnusedDeclarationInspection;
|
|
import com.intellij.pom.java.LanguageLevel;
|
|
|
|
public class LambdaHighlightingTest extends LightDaemonAnalyzerTestCase {
|
|
private static final String BASE_PATH = "/codeInsight/daemonCodeAnalyzer/lambda/highlighting/";
|
|
|
|
@Override
|
|
protected void setUp() throws Exception {
|
|
super.setUp();
|
|
enableInspectionTool(new UnusedDeclarationInspection());
|
|
}
|
|
|
|
public void testStaticAccess() { doTest(); }
|
|
public void testEffectiveFinal() { doTest(); }
|
|
public void testFieldInitializedUsedInLambda() { doTest(); }
|
|
public void testReassignUsedVars() { doTest(); }
|
|
public void testLambdaContext() { doTest(); }
|
|
public void testReturnTypeCompatibility() { doTest(); }
|
|
public void testTypeArgsConsistency() { doTest(); }
|
|
public void testTypeArgsConsistencyMisc1() { doTest(); }
|
|
public void testTypeArgsConsistencyMisc2() { doTest(); }
|
|
public void testTypeArgsConsistencyWithoutParams() { doTest(); }
|
|
public void testIncompatibleReturnTypes() { doTest(); }
|
|
public void testWildcardBounds() { doTest(); }
|
|
public void testInferenceOnMethodCallSite() { doTest(); }
|
|
public void testInferFromTypeArgs() { doTest(); }
|
|
public void testAmbiguity1() { doTest(); }
|
|
//public void testAmbiguity2() { doTest(); }
|
|
public void testAmbiguityVarargs() { doTest(); }
|
|
public void testAmbiguityRawGenerics() { doTest(); }
|
|
public void testDefaultMethod() { doTest(); }
|
|
public void testLambdaOnVarargsPlace() { doTest(); }
|
|
public void testLambdaRawOrNot() { doTest(); } //todo incorrect testdata
|
|
public void testReturnTypeCompatibility1() { doTest(); }
|
|
public void testNoInferenceResult() { doTest(); }
|
|
public void testInferenceFromArgs() { doTest(); }
|
|
public void testInContexts() { doTest(); }
|
|
public void testCastInContexts() { doTest(); }
|
|
public void testUnhandledException() { doTest(); }
|
|
public void testConditionalExpr() { doTest(); }
|
|
public void testIncompleteSubst() { doTest(); }
|
|
public void testVariableInitialization() { doTest(); }
|
|
public void testUnreachableStatement() { doTest(); }
|
|
public void testUnhandledExceptions() { doTest(); }
|
|
public void testReturnValue() { doTest(); }
|
|
public void testAlreadyUsedParamName() { doTest(); }
|
|
public void testRecursiveAccess() { doTest(); }
|
|
public void testIncompatibleFormalParameterTypes() { doTest(); }
|
|
public void testNestedLambdas() { doTest(); }
|
|
public void testEnumConstants() { doTest(); }
|
|
public void testRawWhenNoParams() { doTest(); }
|
|
public void testUseIncompleteParentSubstitutor() { doTest(); }
|
|
public void testReturnTypeCompatibilityBeforeSpecificsCheck() { doTest(); }
|
|
public void testIntersectionTypeInCast() { doTest(); }
|
|
public void testAmbiguitySpecificReturn() { doTest(true); }
|
|
public void testFunctionalInterfaceAnnotation() { doTest(); }
|
|
public void testFunctionalInterfaceAnnotation2() { doTest(); }
|
|
public void testFunctionalInterfaceAnnotation3() { doTest(); }
|
|
public void testAmbiguityReturnValueResolution() { doTest(); }
|
|
public void testAmbiguityReturnValueResolution1() { doTest(); }
|
|
public void testAmbiguityReturnValueResolution2() { doTest(true); }
|
|
public void testAmbiguityReturnValueResolution3() { doTest(); }
|
|
public void testLambdaOnVarargsPlace1() { doTest(); }
|
|
public void testInferenceFromSecondLambda() { doTest(); }
|
|
public void testAcceptRawSubstForLambda() { doTest(); }
|
|
public void testCheckFunctionalInterfaceAccess() { doTest(); }
|
|
public void testVoidCompatibility() { doTest(); }
|
|
public void testConditionalInferenceFromOppositePart() { doTest(); }
|
|
public void testDeclaredTypeParameterBoundsAndUnboundedWildcard() { doTest(); }
|
|
public void testConflictResolution() { doTest(); }
|
|
public void testIDEA108195() { doTest(); }
|
|
public void testDiamondInference() { doTest(); }
|
|
public void testFunctionalInterfaceCheck() { doTest(); }
|
|
public void testUnderscores() { setLanguageLevel(LanguageLevel.JDK_1_8); doTest(true); }
|
|
public void testReturnTypeAmbiguity() { doTest(); }
|
|
public void testWildcardsAndFormalLambdaParams() { doTest(); }
|
|
public void testFinalInitializer() { doTest(); }
|
|
public void testBreakContinueInside() { doTest(); }
|
|
public void testSameLambdaParamNames() { doTest(); }
|
|
public void testIDEA123308() { doTest(); }
|
|
public void testIntersection() { doTest(); }
|
|
public void testNoBoxingInLambdaFormalParams() { doTest(); }
|
|
public void testGenericNotGenericInterfaceMethod() { doTest(); }
|
|
public void testInferredFromCast() { doTest(); }
|
|
public void testReferencedFromSelf() { doTest(); }
|
|
|
|
private void doTest() {
|
|
doTest(false);
|
|
}
|
|
|
|
private void doTest(boolean checkWarnings) {
|
|
doTest(BASE_PATH + getTestName(false) + ".java", checkWarnings, false);
|
|
}
|
|
} |