namespace BlueprintBaseName._1.Tests open Xunit open Amazon.Lambda.TestUtilities open BlueprintBaseName._1 module FunctionTest = [] let ``Invoke ToUpper Lambda Function``() = // Invoke the lambda function and confirm the string was upper cased. let lambdaFunction = Function() let context = TestLambdaContext() let upperCase = lambdaFunction.FunctionHandler "hello world" context Assert.Equal("HELLO WORLD", upperCase) [] let main _ = 0