2024-06-27 23:26:53 -05:00
|
|
|
namespace AnthropicClient.Tests.EndToEnd;
|
|
|
|
|
|
|
|
|
|
public class EndToEndTest(
|
|
|
|
|
HttpClientFixture httpClientFixture,
|
|
|
|
|
ConfigurationFixture configFixture
|
|
|
|
|
) : IClassFixture<HttpClientFixture>, IClassFixture<ConfigurationFixture>
|
|
|
|
|
{
|
2024-06-28 16:30:09 -05:00
|
|
|
protected readonly AnthropicApiClient _client = new(configFixture.AnthropicApiKey, httpClientFixture.HttpClient);
|
2024-06-27 23:26:53 -05:00
|
|
|
}
|