From 0bcb7faadaf92076fde1eefe93b7616889b6024c Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Thu, 31 Mar 2022 10:58:30 +0200 Subject: [PATCH] LogEntries --- Stubbing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Stubbing.md b/Stubbing.md index 5cc3ae9..ba9d3ff 100644 --- a/Stubbing.md +++ b/Stubbing.md @@ -65,9 +65,9 @@ server ## Verify interactions The server keeps a log of the received requests. You can use this log to verify the interactions that have been done with the server during a test. -To get all the request received by the server, you just need to read property *RequestLogs*: +To get all the request received by the server, you just need to read property *LogEntries*: ```csharp -var allRequests = server.RequestLogs; +var logEntries = server.LogEntries; ``` If you need to be more specific on the requests that have been send to the server, you can use the very same fluent API that allows to define routes: ```csharp