jetbrains-core/it/software/aws/toolkits/jetbrains/services/lambda/java/JavaLocalLambdaRunConfigurationIntegrationTest.kt [141:162]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Runtime: $runtime Timeout: 900 """.trimIndent() ) val runConfiguration = createTemplateRunConfiguration( project = projectRule.project, templateFile = templateFile.containingFile.virtualFile.path, logicalId = "SomeFunction", input = "\"Hello World\"", credentialsProviderId = mockId ) assertThat(runConfiguration).isNotNull val executeLambda = executeRunConfigurationAndWait(runConfiguration) assertThat(executeLambda.exitCode).isEqualTo(0) assertThat(executeLambda.stdout).contains("HELLO WORLD") } @Test - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - jetbrains-core/it/software/aws/toolkits/jetbrains/services/lambda/java/JavaLocalLambdaRunConfigurationIntegrationTest.kt [174:195]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Runtime: $runtime Timeout: 900 """.trimIndent() ) val runConfiguration = createTemplateRunConfiguration( project = projectRule.project, templateFile = templateFile.containingFile.virtualFile.path, logicalId = "SomeFunction", input = "\"Hello World\"", credentialsProviderId = mockId ) assertThat(runConfiguration).isNotNull val executeLambda = executeRunConfigurationAndWait(runConfiguration) assertThat(executeLambda.exitCode).isEqualTo(0) assertThat(executeLambda.stdout).contains("HELLO WORLD") } @Test - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -