Files
natsdotnet/tests/NATS.Server.Tests/JetStreamConsumerApiTests.cs
2026-02-23 06:06:02 -05:00

17 lines
516 B
C#

namespace NATS.Server.Tests;
public class JetStreamConsumerApiTests
{
[Fact]
public async Task Create_consumer_and_fetch_info_roundtrip()
{
await using var fixture = await JetStreamApiFixture.StartWithStreamAsync("ORDERS", "orders.*");
var create = await fixture.CreateConsumerAsync("ORDERS", "DUR", "orders.created");
create.Error.ShouldBeNull();
var info = await fixture.GetConsumerInfoAsync("ORDERS", "DUR");
info.Config.DurableName.ShouldBe("DUR");
}
}