using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Xunit; using Amazon.Lambda.Core; using Amazon.Lambda.TestUtilities; using InvokeOrchestratorLambda; namespace InvokeOrchestratorLambda.Tests { public class InvokeOrchestratorShould { // [Fact] // public void TestToUpperFunction() // { // // Invoke the lambda function and confirm the string was upper cased. // var function = new InvokeOrchestrator(); // var context = new TestLambdaContext(); // var retValue = function.FunctionHandler("hello world", context); // // Assert.True(retValue.Result); // } } }