10 lines
252 B
C#
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);
|
|
}
|
|
}
|