Search⌘ K
AI Features

Solution Review: Implementing Functionality under Test

Explore the process of implementing and testing AWS Lambda function logic in C#. This lesson guides you through a practical example that counts unique vowels in input text, helping you understand how to write, iterate, and test AWS Lambda functions using .NET automation frameworks.

We'll cover the following...

The complete solution is presented in the playground below.

{
  "Information": [
    "This file provides default values for the deployment wizard inside Visual Studio and the AWS Lambda commands added to the .NET Core CLI.",
    "To learn more about the Lambda commands with the .NET Core CLI execute the following command at the command line in the project root directory.",
    "dotnet lambda help",
    "All the command line options for the Lambda command can be specified in this file."
  ],
  "profile": "",
  "region": "",
  "configuration": "Release",
  "function-architecture": "x86_64",
  "function-runtime": "dotnet6",
  "function-memory-size": 256,
  "function-timeout": 30,
  "function-handler": "EmptyLambdaApp::EmptyLambdaApp.Function::FunctionHandler"
}
Complete solution

Here are the steps to solve the challenge.

  1. First, on line 13 ...