Updated Stubbing (markdown)

Stef Heyenrath
2020-04-15 09:27:51 +02:00
parent d4cc2907cc
commit 6d8ca549ad

@@ -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: 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 ```csharp
var customerReadRequests = server.SearchLogsFor( var customerReadRequests = server.FindLogEntries(
Request.Create().WithPath("/api/customer*").UsingGet() Request.Create().WithPath("/api/customer*").UsingGet()
); );
``` ```