9 lines
327 B
C#
9 lines
327 B
C#
namespace AnthropicClient.Tests.EndToEnd;
|
|
|
|
public class EndToEndTest(
|
|
HttpClientFixture httpClientFixture,
|
|
ConfigurationFixture configFixture
|
|
) : IClassFixture<HttpClientFixture>, IClassFixture<ConfigurationFixture>
|
|
{
|
|
protected readonly Client _client = new(configFixture.AnthropicApiKey, httpClientFixture.HttpClient);
|
|
} |