| 61 | LambdaRuntimeTest() : m_lambda_client(create_lambda_config()), m_iam_client(create_iam_config()) {} |
| 62 | |
| 63 | ~LambdaRuntimeTest() override |
| 64 | { |
| 65 | // clean up in case we exited one test abnormally |
| 66 | delete_function(build_resource_name("echo_success"), false /*assert*/); |
| 67 | delete_function(build_resource_name("echo_failure"), false /*assert*/); |
| 68 | delete_function(build_resource_name("binary_response"), false /*assert*/); |
| 69 | delete_function(build_resource_name("crash_backtrace"), false /*assert*/); |
| 70 | } |
| 71 | |
| 72 | Aws::String get_role_arn(Aws::String const& role_name) |
| 73 | { |
nothing calls this directly
no outgoing calls
no test coverage detected