Files
GameList/GameList.Tests/Support/StubHttpClientFactory.cs
2026-02-05 20:39:12 +01:00

10 lines
252 B
C#

namespace GameList.Tests.Support;
internal class StubHttpClientFactory(StubHttpMessageHandler handler) : IHttpClientFactory
{
public HttpClient CreateClient(string name)
{
return new HttpClient(handler, disposeHandler: false);
}
}