Finish: Phase 33 — Alert Quality Analytics
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
[Collection("Integration")]
|
||||
public class RabbitMqOptionsTests
|
||||
{
|
||||
private readonly ApiFixture _fixture;
|
||||
|
||||
public RabbitMqOptionsTests(ApiFixture fixture) => _fixture = fixture;
|
||||
|
||||
[Fact]
|
||||
public void PagingAckTimeoutMs_IsConfiguredForIntegrationTests()
|
||||
{
|
||||
using var scope = _fixture.Services.CreateScope();
|
||||
var opts = scope.ServiceProvider.GetRequiredService<Microsoft.Extensions.Options.IOptions<RabbitMqOptions>>().Value;
|
||||
opts.PagingAckTimeoutMs.Should().Be(5000);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user