29 lines
No EOL
704 B
C#
29 lines
No EOL
704 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
using Amazon.Lambda.Core;
|
|
using Amazon.Lambda.TestUtilities;
|
|
|
|
using lambda_dotnet_console;
|
|
|
|
using Xunit;
|
|
|
|
namespace lambda_dotnet_console.Tests
|
|
{
|
|
public class FunctionTest
|
|
{
|
|
[Fact]
|
|
public void TestToUpperFunction()
|
|
{
|
|
|
|
// Invoke the lambda function and confirm the string was upper cased.
|
|
var function = new Function();
|
|
var context = new TestLambdaContext();
|
|
var upperCase = function.FunctionHandler("hello world", context);
|
|
|
|
Assert.Equal("TestHELLO WORLD", upperCase);
|
|
}
|
|
}
|
|
} |