diff --git a/idea/tests/org/jetbrains/jet/plugin/quickfix/QuickFixTestGenerated.java b/idea/tests/org/jetbrains/jet/plugin/quickfix/QuickFixTestGenerated.java index ff328651671..e506cc39f3d 100644 --- a/idea/tests/org/jetbrains/jet/plugin/quickfix/QuickFixTestGenerated.java +++ b/idea/tests/org/jetbrains/jet/plugin/quickfix/QuickFixTestGenerated.java @@ -484,6 +484,11 @@ public class QuickFixTestGenerated extends AbstractQuickFixTest { doTest("idea/testData/quickfix/modifiers/beforeIllegalEnumAnnotation2.kt"); } + @TestMetadata("beforeNestedClassNotAllowed.kt") + public void testNestedClassNotAllowed() throws Exception { + doTest("idea/testData/quickfix/modifiers/beforeNestedClassNotAllowed.kt"); + } + @TestMetadata("beforeNotAnAnnotationClass.kt") public void testNotAnAnnotationClass() throws Exception { doTest("idea/testData/quickfix/modifiers/beforeNotAnAnnotationClass.kt"); @@ -968,6 +973,26 @@ public class QuickFixTestGenerated extends AbstractQuickFixTest { JetTestUtils.assertAllTestsPresentByMetadata(this.getClass(), "org.jetbrains.jet.generators.tests.GenerateTests", new File("idea/testData/quickfix/typeProjection"), Pattern.compile("^before(\\w+)\\.kt$"), true); } + @TestMetadata("beforeConflictingProjection.kt") + public void testConflictingProjection() throws Exception { + doTest("idea/testData/quickfix/typeProjection/beforeConflictingProjection.kt"); + } + + @TestMetadata("beforeProjectionInImmediateArgumentToSupertype.kt") + public void testProjectionInImmediateArgumentToSupertype() throws Exception { + doTest("idea/testData/quickfix/typeProjection/beforeProjectionInImmediateArgumentToSupertype.kt"); + } + + @TestMetadata("beforeProjectionOnNonClassTypeArgument1.kt") + public void testProjectionOnNonClassTypeArgument1() throws Exception { + doTest("idea/testData/quickfix/typeProjection/beforeProjectionOnNonClassTypeArgument1.kt"); + } + + @TestMetadata("beforeProjectionOnNonClassTypeArgument2.kt") + public void testProjectionOnNonClassTypeArgument2() throws Exception { + doTest("idea/testData/quickfix/typeProjection/beforeProjectionOnNonClassTypeArgument2.kt"); + } + @TestMetadata("beforeRemoveRedundantProjection1.kt") public void testRemoveRedundantProjection1() throws Exception { doTest("idea/testData/quickfix/typeProjection/beforeRemoveRedundantProjection1.kt");