├── .config └── dotnet-tools.json ├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── 10_bug_report.yml │ ├── 20_feature_request.yml │ ├── 30_question.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── actionlint-matcher.json ├── dependabot.yml ├── release.yml ├── renovate.json ├── update-dotnet-sdk.json ├── workflows │ ├── build.yml │ ├── bump-version.yml │ ├── codeql.yml │ ├── dependency-review.yml │ ├── lint.yml │ ├── ossf-scorecard.yml │ ├── publish.yml │ └── release.yml └── zizmor.yml ├── .gitignore ├── .markdownlint.json ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── .vsconfig ├── AwsLambdaTestServer.ruleset ├── AwsLambdaTestServer.slnx ├── AwsLambdaTestServer.snk ├── CODE_OF_CONDUCT.md ├── Directory.Build.props ├── Directory.Packages.props ├── LICENSE ├── NuGet.config ├── README.md ├── SECURITY.md ├── exclusion.dic ├── global.json ├── package-icon.png ├── package-readme.md ├── samples ├── MathsFunctions.Tests │ ├── MathsFunctionTests.cs │ └── MathsFunctions.Tests.csproj ├── MathsFunctions │ ├── MathsFunction.cs │ ├── MathsFunctions.csproj │ ├── MathsRequest.cs │ └── MathsResponse.cs ├── MinimalApi.Tests │ ├── ApiTests.cs │ ├── HttpLambdaTestServer.cs │ └── MinimalApi.Tests.csproj └── MinimalApi │ ├── HashRequest.cs │ ├── HashResponse.cs │ ├── MinimalApi.csproj │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json ├── src └── AwsLambdaTestServer │ ├── LambdaTestContext.cs │ ├── LambdaTestRequest.cs │ ├── LambdaTestResponse.cs │ ├── LambdaTestResponseExtensions.cs │ ├── LambdaTestServer.cs │ ├── LambdaTestServerExtensions.cs │ ├── LambdaTestServerOptions.cs │ ├── MartinCostello.Testing.AwsLambdaTestServer.csproj │ ├── PublicAPI │ ├── PublicAPI.Shipped.txt │ └── PublicAPI.Unshipped.txt │ └── RuntimeHandler.cs ├── stylecop.json └── tests └── AwsLambdaTestServer.Tests ├── AssemblyFixture.cs ├── AssemblyTests.cs ├── AwsIntegrationTests.cs ├── Examples.cs ├── FunctionRunner.cs ├── FunctionTests.cs ├── HttpLambdaTestServer.cs ├── HttpLambdaTestServerTests.cs ├── LambdaTestRequestTests.cs ├── LambdaTestResponseExtensionsTests.cs ├── LambdaTestServerCollection.cs ├── LambdaTestServerExtensionsTests.cs ├── LambdaTestServerOptionsTests.cs ├── LambdaTestServerTests.cs ├── MartinCostello.Testing.AwsLambdaTestServer.Tests.csproj ├── MyFunctionEntrypoint.cs ├── MyHandler.cs ├── MyRequest.cs ├── MyResponse.cs ├── ParallelismTests.cs ├── ReverseFunction.cs ├── ReverseFunctionTests.cs ├── ReverseFunctionWithCustomOptionsTests.cs ├── ReverseFunctionWithLoggingTests.cs ├── ReverseFunctionWithMobileSdkTests.cs └── TestExtensions.cs /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.sh eol=lf 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @martincostello 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/10_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/ISSUE_TEMPLATE/10_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/20_feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/ISSUE_TEMPLATE/20_feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/30_question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/ISSUE_TEMPLATE/30_question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actionlint-matcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/actionlint-matcher.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/update-dotnet-sdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/update-dotnet-sdk.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/bump-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/workflows/bump-version.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/ossf-scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/workflows/ossf-scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.github/zizmor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/.vsconfig -------------------------------------------------------------------------------- /AwsLambdaTestServer.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/AwsLambdaTestServer.ruleset -------------------------------------------------------------------------------- /AwsLambdaTestServer.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/AwsLambdaTestServer.slnx -------------------------------------------------------------------------------- /AwsLambdaTestServer.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/AwsLambdaTestServer.snk -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/SECURITY.md -------------------------------------------------------------------------------- /exclusion.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/exclusion.dic -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/global.json -------------------------------------------------------------------------------- /package-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/package-icon.png -------------------------------------------------------------------------------- /package-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/package-readme.md -------------------------------------------------------------------------------- /samples/MathsFunctions.Tests/MathsFunctionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MathsFunctions.Tests/MathsFunctionTests.cs -------------------------------------------------------------------------------- /samples/MathsFunctions.Tests/MathsFunctions.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MathsFunctions.Tests/MathsFunctions.Tests.csproj -------------------------------------------------------------------------------- /samples/MathsFunctions/MathsFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MathsFunctions/MathsFunction.cs -------------------------------------------------------------------------------- /samples/MathsFunctions/MathsFunctions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MathsFunctions/MathsFunctions.csproj -------------------------------------------------------------------------------- /samples/MathsFunctions/MathsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MathsFunctions/MathsRequest.cs -------------------------------------------------------------------------------- /samples/MathsFunctions/MathsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MathsFunctions/MathsResponse.cs -------------------------------------------------------------------------------- /samples/MinimalApi.Tests/ApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MinimalApi.Tests/ApiTests.cs -------------------------------------------------------------------------------- /samples/MinimalApi.Tests/HttpLambdaTestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MinimalApi.Tests/HttpLambdaTestServer.cs -------------------------------------------------------------------------------- /samples/MinimalApi.Tests/MinimalApi.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MinimalApi.Tests/MinimalApi.Tests.csproj -------------------------------------------------------------------------------- /samples/MinimalApi/HashRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MinimalApi/HashRequest.cs -------------------------------------------------------------------------------- /samples/MinimalApi/HashResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MinimalApi/HashResponse.cs -------------------------------------------------------------------------------- /samples/MinimalApi/MinimalApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MinimalApi/MinimalApi.csproj -------------------------------------------------------------------------------- /samples/MinimalApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MinimalApi/Program.cs -------------------------------------------------------------------------------- /samples/MinimalApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MinimalApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/MinimalApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MinimalApi/appsettings.Development.json -------------------------------------------------------------------------------- /samples/MinimalApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/samples/MinimalApi/appsettings.json -------------------------------------------------------------------------------- /src/AwsLambdaTestServer/LambdaTestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/src/AwsLambdaTestServer/LambdaTestContext.cs -------------------------------------------------------------------------------- /src/AwsLambdaTestServer/LambdaTestRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/src/AwsLambdaTestServer/LambdaTestRequest.cs -------------------------------------------------------------------------------- /src/AwsLambdaTestServer/LambdaTestResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/src/AwsLambdaTestServer/LambdaTestResponse.cs -------------------------------------------------------------------------------- /src/AwsLambdaTestServer/LambdaTestResponseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/src/AwsLambdaTestServer/LambdaTestResponseExtensions.cs -------------------------------------------------------------------------------- /src/AwsLambdaTestServer/LambdaTestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/src/AwsLambdaTestServer/LambdaTestServer.cs -------------------------------------------------------------------------------- /src/AwsLambdaTestServer/LambdaTestServerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/src/AwsLambdaTestServer/LambdaTestServerExtensions.cs -------------------------------------------------------------------------------- /src/AwsLambdaTestServer/LambdaTestServerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/src/AwsLambdaTestServer/LambdaTestServerOptions.cs -------------------------------------------------------------------------------- /src/AwsLambdaTestServer/MartinCostello.Testing.AwsLambdaTestServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/src/AwsLambdaTestServer/MartinCostello.Testing.AwsLambdaTestServer.csproj -------------------------------------------------------------------------------- /src/AwsLambdaTestServer/PublicAPI/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/src/AwsLambdaTestServer/PublicAPI/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /src/AwsLambdaTestServer/PublicAPI/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/src/AwsLambdaTestServer/PublicAPI/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/AwsLambdaTestServer/RuntimeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/src/AwsLambdaTestServer/RuntimeHandler.cs -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/stylecop.json -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/AssemblyFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/AssemblyFixture.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/AssemblyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/AssemblyTests.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/AwsIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/AwsIntegrationTests.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/Examples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/Examples.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/FunctionRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/FunctionRunner.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/FunctionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/FunctionTests.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/HttpLambdaTestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/HttpLambdaTestServer.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/HttpLambdaTestServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/HttpLambdaTestServerTests.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/LambdaTestRequestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/LambdaTestRequestTests.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/LambdaTestResponseExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/LambdaTestResponseExtensionsTests.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/LambdaTestServerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/LambdaTestServerCollection.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/LambdaTestServerExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/LambdaTestServerExtensionsTests.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/LambdaTestServerOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/LambdaTestServerOptionsTests.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/LambdaTestServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/LambdaTestServerTests.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/MartinCostello.Testing.AwsLambdaTestServer.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/MartinCostello.Testing.AwsLambdaTestServer.Tests.csproj -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/MyFunctionEntrypoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/MyFunctionEntrypoint.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/MyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/MyHandler.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/MyRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/MyRequest.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/MyResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/MyResponse.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/ParallelismTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/ParallelismTests.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/ReverseFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/ReverseFunction.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/ReverseFunctionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/ReverseFunctionTests.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/ReverseFunctionWithCustomOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/ReverseFunctionWithCustomOptionsTests.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/ReverseFunctionWithLoggingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/ReverseFunctionWithLoggingTests.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/ReverseFunctionWithMobileSdkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/ReverseFunctionWithMobileSdkTests.cs -------------------------------------------------------------------------------- /tests/AwsLambdaTestServer.Tests/TestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/lambda-test-server/HEAD/tests/AwsLambdaTestServer.Tests/TestExtensions.cs --------------------------------------------------------------------------------