[Tests] Add tests with default params and suspending contextual function

This commit is contained in:
Anastasiya Shadrina
2021-11-10 18:38:42 +07:00
committed by TeamCityServer
parent cd2fbfed2e
commit 2e97e78e6a
4 changed files with 75 additions and 0 deletions
@@ -16229,6 +16229,18 @@ public class FirBlackBoxCodegenTestGenerated extends AbstractFirBlackBoxCodegenT
runTest("compiler/testData/codegen/box/extensionFunctions/contextReceivers/useFromAnotherModule.kt");
}
@Test
@TestMetadata("useFromAnotherModuleSuspending.kt")
public void testUseFromAnotherModuleSuspending() throws Exception {
runTest("compiler/testData/codegen/box/extensionFunctions/contextReceivers/useFromAnotherModuleSuspending.kt");
}
@Test
@TestMetadata("useFromAnotherModuleWithDefaultParameterValues.kt")
public void testUseFromAnotherModuleWithDefaultParameterValues() throws Exception {
runTest("compiler/testData/codegen/box/extensionFunctions/contextReceivers/useFromAnotherModuleWithDefaultParameterValues.kt");
}
@Nested
@TestMetadata("compiler/testData/codegen/box/extensionFunctions/contextReceivers/fromKEEP")
@TestDataPath("$PROJECT_ROOT")