2024-06-27 23:26:53 -05:00
|
|
|
namespace AnthropicClient.Tests.EndToEnd;
|
|
|
|
|
|
2024-06-29 09:49:15 -05:00
|
|
|
public class EndToEndTest(ConfigurationFixture configFixture) : IClassFixture<ConfigurationFixture>
|
2024-06-27 23:26:53 -05:00
|
|
|
{
|
2024-06-29 09:49:15 -05:00
|
|
|
protected readonly AnthropicApiClient _client = new(configFixture.AnthropicApiKey, new());
|
2024-08-18 12:53:42 -05:00
|
|
|
protected AnthropicApiClient CreateClient(HttpClient httpClient) => new(configFixture.AnthropicApiKey, httpClient);
|
2024-06-27 23:26:53 -05:00
|
|
|
}
|