add tests for private signatures

regenerate tests

add test for EnumEntry's argument declarations

add another test

regenerate test

fix test a bit
This commit is contained in:
Roman Artemev
2021-05-13 17:05:18 +03:00
committed by TeamCityServer
parent 2865d8bd45
commit 5a284de2d4
15 changed files with 665 additions and 0 deletions
@@ -22302,6 +22302,22 @@ public class FirBlackBoxCodegenTestGenerated extends AbstractFirBlackBoxCodegenT
}
}
@Nested
@TestMetadata("compiler/testData/codegen/box/ir/privateSignatures")
@TestDataPath("$PROJECT_ROOT")
public class PrivateSignatures {
@Test
public void testAllFilesPresentInPrivateSignatures() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ir/privateSignatures"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
}
@Test
@TestMetadata("enumEntryArguments.kt")
public void testEnumEntryArguments() throws Exception {
runTest("compiler/testData/codegen/box/ir/privateSignatures/enumEntryArguments.kt");
}
}
@Nested
@TestMetadata("compiler/testData/codegen/box/ir/serializationRegressions")
@TestDataPath("$PROJECT_ROOT")