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

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);
}