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

9 lines
339 B
C#
Raw Normal View History

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