You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/WireMock.Net.FluentAssertions/Assertions/WireMockAssertions.WithBody.cs
+28-34Lines changed: 28 additions & 34 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,20 @@
1
1
#pragma warning disable CS1591
2
2
usingSystem;
3
3
usingSystem.Collections.Generic;
4
+
usingAnyOfTypes;
5
+
usingNewtonsoft.Json;
6
+
usingNewtonsoft.Json.Linq;
7
+
usingWireMock.Extensions;
4
8
usingWireMock.Matchers;
9
+
usingWireMock.Models;
5
10
6
11
// ReSharper disable once CheckNamespace
7
12
namespaceWireMock.FluentAssertions;
8
13
9
14
publicpartialclassWireMockAssertions
10
15
{
11
16
privateconststringMessageFormatNoCalls="Expected {context:wiremockserver} to have been called using body {0}{reason}, but no calls were made.";
12
-
privateconststringMessageFormat="Expected {context:wiremockserver} to have been called using body {0}{reason}, but didn't find it among the body {1}.";
17
+
privateconststringMessageFormat="Expected {context:wiremockserver} to have been called using body {0}{reason}, but didn't find it among the body/bodies {1}.";
0 commit comments