tests: add tests for ephemeral cache control model

This commit is contained in:
Stevan Freeborn
2024-08-17 17:53:03 -05:00
parent 364c91080c
commit f2f150791e
@@ -0,0 +1,10 @@
namespace AnthropicClient.Tests.Unit.Models;
public class EphemeralCacheControlTests
{
[Fact]
public void Constructor_WhenCalled_ItShouldInitializeType()
{
new EphemeralCacheControl().Type.Should().Be(CacheControlType.Ephemeral);
}
}