mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-19 23:11:20 +02:00
35 lines
1.3 KiB
C#
35 lines
1.3 KiB
C#
using Stef.Validation;
|
|
using WireMock.Server;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace WireMock.FluentAssertions;
|
|
|
|
/// <summary>
|
|
/// Provides assertion methods to verify the number of calls made to a WireMock server.
|
|
/// This class is used in the context of FluentAssertions.
|
|
/// </summary>
|
|
public class WireMockANumberOfCallsAssertions
|
|
{
|
|
private readonly IWireMockServer _server;
|
|
private readonly int _callsCount;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="WireMockANumberOfCallsAssertions"/> class.
|
|
/// </summary>
|
|
/// <param name="server">The WireMock server to assert against.</param>
|
|
/// <param name="callsCount">The expected number of calls to assert.</param>
|
|
public WireMockANumberOfCallsAssertions(IWireMockServer server, int callsCount)
|
|
{
|
|
_server = Guard.NotNull(server);
|
|
_callsCount = callsCount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns an instance of <see cref="WireMockAssertions"/> which can be used to assert the expected number of calls.
|
|
/// </summary>
|
|
/// <returns>A <see cref="WireMockAssertions"/> instance for asserting the number of calls to the server.</returns>
|
|
public WireMockAssertions Calls()
|
|
{
|
|
return new WireMockAssertions(_server, _callsCount);
|
|
}
|
|
} |