You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
742 B
28 lines
742 B
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(new string[0]));
|
|
}
|
|
|
|
[Test]
|
|
public void event_handlers_should_be_unique()
|
|
{
|
|
var handlers = Subject.BuildAll<IHandle<ApplicationShutdownRequested>>()
|
|
.Select(c => c.GetType().FullName);
|
|
|
|
handlers.Should().OnlyHaveUniqueItems();
|
|
}
|
|
}
|
|
} |