mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
29 lines
730 B
C#
29 lines
730 B
C#
|
using System.Linq;
|
|||
|
using FluentAssertions;
|
|||
|
using NUnit.Framework;
|
|||
|
using NzbDrone.Common.Messaging;
|
|||
|
using NzbDrone.Core.Lifecycle;
|
|||
|
using NzbDrone.Test.Common;
|
|||
|
|
|||
|
namespace NzbDrone.Common.Test
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class ServiceFactoryFixture : TestBase<ServiceFactory>
|
|||
|
{
|
|||
|
[SetUp]
|
|||
|
public void setup()
|
|||
|
{
|
|||
|
Mocker.SetConstant(MainAppContainerBuilder.BuildContainer());
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
[Test]
|
|||
|
public void event_handlers_should_be_unique()
|
|||
|
{
|
|||
|
var handlers = Subject.BuildAll<IHandle<ApplicationShutdownRequested>>()
|
|||
|
.Select(c => c.GetType().FullName);
|
|||
|
|
|||
|
handlers.Should().OnlyHaveUniqueItems();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|