mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 22:23:18 +08:00
11 lines
260 B
C#
11 lines
260 B
C#
|
|
#nullable enable
|
|||
|
|
|
|||
|
|
namespace Bit.Test.Common.MockedHttpClient;
|
|||
|
|
|
|||
|
|
public interface IHttpRequestMatcher
|
|||
|
|
{
|
|||
|
|
int NumberOfMatches { get; }
|
|||
|
|
bool Matches(HttpRequestMessage request);
|
|||
|
|
Task<HttpResponseMessage> RespondToAsync(HttpRequestMessage request);
|
|||
|
|
}
|