2025-01-08 22:46:17 -06:00
|
|
|
namespace AnthropicClient.Tests.Unit.Models;
|
|
|
|
|
|
|
|
|
|
public class MessageBatchStatusTests
|
|
|
|
|
{
|
|
|
|
|
[Fact]
|
|
|
|
|
public void Canceling_WhenCalled_ItShouldReturnCancelingStatus()
|
|
|
|
|
{
|
|
|
|
|
MessageBatchStatus.Canceling.Should().Be("canceling");
|
|
|
|
|
}
|
2025-01-15 10:30:02 -06:00
|
|
|
|
2025-01-08 22:46:17 -06:00
|
|
|
[Fact]
|
|
|
|
|
public void InProgress_WhenCalled_ItShouldReturnCancelingStatus()
|
|
|
|
|
{
|
|
|
|
|
MessageBatchStatus.InProgress.Should().Be("in_progress");
|
|
|
|
|
}
|
2025-01-15 10:30:02 -06:00
|
|
|
|
2025-01-08 22:46:17 -06:00
|
|
|
[Fact]
|
|
|
|
|
public void Ended_WhenCalled_ItShouldReturnCancelingStatus()
|
|
|
|
|
{
|
|
|
|
|
MessageBatchStatus.Ended.Should().Be("ended");
|
|
|
|
|
}
|
|
|
|
|
}
|