// Copyright © WireMock.Net
// ReSharper disable once CheckNamespace
namespace WireMock.Client.AwesomeAssertions;
///
/// Provides assertion methods to verify the number of calls made to a WireMock server.
/// This class is used in the context of AwesomeAssertions.
///
///
/// Initializes a new instance of the class.
///
/// The WireMock Admin API to assert against.
/// The expected number of calls to assert.
/// The assertion chain
public class WireMockAdminApiANumberOfCallsAssertions(IWireMockAdminApi adminApi, int callsCount, AssertionChain chain)
{
///
/// Returns an instance of which can be used to assert the expected number of calls.
///
/// A instance for asserting the number of calls to the server.
public WireMockAdminApiAssertions Calls()
{
return new WireMockAdminApiAssertions(adminApi, callsCount, chain);
}
}