Files
anthropic-client/tests/AnthropicClient.Tests/EndToEnd/EndToEndTest.cs
T

7 lines
357 B
C#
Raw Normal View History

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());
protected AnthropicApiClient CreateClient(HttpClient httpClient) => new(configFixture.AnthropicApiKey, httpClient);
2024-06-27 23:26:53 -05:00
}