Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Libraries/src/Amazon.Lambda.TestUtilities/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Package includes test implementation of the interfaces from Amazon.Lambda.Core a

## Example xUnit test case using Amazon.Lambda.TestUtilities

The test case creates an instance of [TestLambdaContext](src/Amazon.Lambda.TestUtilities/TestLambdaContext.cs) for the function to use.
The test case creates an instance of [TestLambdaContext](/Libraries/src/Amazon.Lambda.TestUtilities/TestLambdaContext.cs) for the function to use.
By default all properties except for the Logger property are set to null. The default Logger will write to the console. Any properties that your function uses will need to be set
on the TestLambdaContext.
```
Expand All @@ -23,4 +23,4 @@ public void TestToUpperFunction()

Assert.Equal("HELLO WORLD", upperCase);
}
```
```