summaryrefslogtreecommitdiff
path: root/java/java-tests/testSrc/com/intellij/codeInsight/daemon/lambda/GraphInferenceHighlightingTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/java-tests/testSrc/com/intellij/codeInsight/daemon/lambda/GraphInferenceHighlightingTest.java')
-rw-r--r--java/java-tests/testSrc/com/intellij/codeInsight/daemon/lambda/GraphInferenceHighlightingTest.java23
1 files changed, 21 insertions, 2 deletions
diff --git a/java/java-tests/testSrc/com/intellij/codeInsight/daemon/lambda/GraphInferenceHighlightingTest.java b/java/java-tests/testSrc/com/intellij/codeInsight/daemon/lambda/GraphInferenceHighlightingTest.java
index c2ab020f09f3..7585d661b289 100644
--- a/java/java-tests/testSrc/com/intellij/codeInsight/daemon/lambda/GraphInferenceHighlightingTest.java
+++ b/java/java-tests/testSrc/com/intellij/codeInsight/daemon/lambda/GraphInferenceHighlightingTest.java
@@ -47,16 +47,20 @@ public class GraphInferenceHighlightingTest extends LightDaemonAnalyzerTestCase
doTest();
}
- @Bombed(day = 20, month = Calendar.AUGUST)
+ @Bombed(day = 30, month = Calendar.SEPTEMBER)
public void testInferenceFromSiblings() throws Exception {
doTest();
}
- @Bombed(day = 20, month = Calendar.AUGUST)
+ @Bombed(day = 30, month = Calendar.SEPTEMBER)
public void testChainedInferenceTypeParamsOrderIndependent() throws Exception {
doTest();
}
+ public void testCyclicParamsDependency() throws Exception {
+ doTest();
+ }
+
public void testInferenceForFirstArg() throws Exception {
doTest();
}
@@ -216,6 +220,21 @@ public class GraphInferenceHighlightingTest extends LightDaemonAnalyzerTestCase
public void testIDEA127928() throws Exception {
doTest();
}
+ public void testIDEA128766() throws Exception {
+ doTest();
+ }
+
+ public void testSameMethodNestedChainedCallsNearFunctionInterfaces() throws Exception {
+ doTest();
+ }
+
+ public void testInfiniteTypes() throws Exception {
+ doTest();
+ }
+
+ public void testIDEA126163() throws Exception {
+ doTest();
+ }
private void doTest() throws Exception {
doTest(false);