using WireMock.Server; // ReSharper disable once CheckNamespace namespace WireMock.FluentAssertions { /// /// Contains extension methods for custom assertions in unit tests. /// public static class WireMockExtensions { /// /// Returns a object that can be used to assert the current . /// /// The WireMockServer /// public static WireMockReceivedAssertions Should(this IWireMockServer instance) { return new WireMockReceivedAssertions(instance); } } }