FluentAssertions - WithBody and WithBodyAsJson and WithBodyAsBytes (#1014)

* WithBody

* .

* fix

* .

* .
This commit is contained in:
Stef Heyenrath
2023-11-04 16:17:23 +01:00
committed by GitHub
parent 2f29d80336
commit 7160dbdd19
11 changed files with 450 additions and 100 deletions
@@ -1,3 +1,4 @@
using Stef.Validation;
using WireMock.Server;
// ReSharper disable once CheckNamespace
@@ -10,7 +11,7 @@ namespace WireMock.FluentAssertions
public WireMockANumberOfCallsAssertions(IWireMockServer server, int callsCount)
{
_server = server;
_server = Guard.NotNull(server);
_callsCount = callsCount;
}