From 6d8ca549ad93d3c99ba9fa6936c7ccd496ec0f33 Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Wed, 15 Apr 2020 09:27:51 +0200 Subject: [PATCH] Updated Stubbing (markdown) --- Stubbing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Stubbing.md b/Stubbing.md index ccf01b6..0be335f 100644 --- a/Stubbing.md +++ b/Stubbing.md @@ -70,7 +70,7 @@ var allRequests = server.RequestLogs; ``` 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 -var customerReadRequests = server.SearchLogsFor( +var customerReadRequests = server.FindLogEntries( Request.Create().WithPath("/api/customer*").UsingGet() ); ```