This commit is contained in:
Dmitry Petrov
2016-08-24 17:11:01 +03:00
committed by Dmitry Petrov
parent 03a666690b
commit 4709aaafaa
12 changed files with 375 additions and 32 deletions
@@ -137,6 +137,24 @@ public class IrTextTestCaseGenerated extends AbstractIrTextTestCase {
doTest(fileName);
}
@TestMetadata("for.kt")
public void testFor() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/ir/irText/for.kt");
doTest(fileName);
}
@TestMetadata("forWithBreakContinue.kt")
public void testForWithBreakContinue() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/ir/irText/forWithBreakContinue.kt");
doTest(fileName);
}
@TestMetadata("forWithImplicitReceivers.kt")
public void testForWithImplicitReceivers() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/ir/irText/forWithImplicitReceivers.kt");
doTest(fileName);
}
@TestMetadata("identity.kt")
public void testIdentity() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/ir/irText/identity.kt");