tests: add test for cache control type static class

This commit is contained in:
Stevan Freeborn
2024-08-17 17:51:56 -05:00
parent 6431e2a113
commit 364c91080c
@@ -0,0 +1,10 @@
namespace AnthropicClient.Tests.Unit.Models;
public class CacheControlTypeTests
{
[Fact]
public void Ephemeral_WhenCalled_ItShouldReturnExpectedValue()
{
CacheControlType.Ephemeral.Should().Be("ephemeral");
}
}