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

6 lines
239 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());
2024-06-27 23:26:53 -05:00
}