2022-06-29 19:46:41 -04:00
|
|
|
|
using Bit.Core.Services;
|
2021-02-22 15:35:16 -06:00
|
|
|
|
using Bit.Core.Settings;
|
2019-07-05 22:35:54 -05:00
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
2022-08-29 15:53:48 -04:00
|
|
|
|
namespace Bit.Core.Test.Services
|
2019-07-05 22:35:54 -05:00
|
|
|
|
{
|
2022-08-29 15:53:48 -04:00
|
|
|
|
public class AzureQueueBlockIpServiceTests
|
|
|
|
|
|
{
|
|
|
|
|
|
private readonly AzureQueueBlockIpService _sut;
|
2019-07-05 22:35:54 -05:00
|
|
|
|
|
2022-08-29 15:53:48 -04:00
|
|
|
|
private readonly GlobalSettings _globalSettings;
|
2019-07-05 22:35:54 -05:00
|
|
|
|
|
2022-08-29 15:53:48 -04:00
|
|
|
|
public AzureQueueBlockIpServiceTests()
|
|
|
|
|
|
{
|
|
|
|
|
|
_globalSettings = new GlobalSettings();
|
2019-07-05 22:35:54 -05:00
|
|
|
|
|
2022-08-29 15:53:48 -04:00
|
|
|
|
_sut = new AzureQueueBlockIpService(_globalSettings);
|
|
|
|
|
|
}
|
2019-07-05 22:35:54 -05:00
|
|
|
|
|
2022-08-29 15:53:48 -04:00
|
|
|
|
// Remove this test when we add actual tests. It only proves that
|
|
|
|
|
|
// we've properly constructed the system under test.
|
|
|
|
|
|
[Fact(Skip = "Needs additional work")]
|
|
|
|
|
|
public void ServiceExists()
|
|
|
|
|
|
{
|
|
|
|
|
|
Assert.NotNull(_sut);
|
|
|
|
|
|
}
|
2019-07-05 22:35:54 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|