1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 02:22:31 +01:00
Radarr/NzbDrone.App.Test/CentralDispatchTests.cs

45 lines
1.2 KiB
C#
Raw Normal View History

2013-01-03 02:09:13 +01:00
using Autofac;
using FluentAssertions;
2011-10-11 09:11:05 +02:00
using NUnit.Framework;
2011-11-13 19:16:31 +01:00
using NzbDrone.Test.Common;
2011-10-11 09:11:05 +02:00
namespace NzbDrone.App.Test
{
[TestFixture]
2011-11-13 19:16:31 +01:00
public class CentralDispatchTests : TestBase
2011-10-11 09:11:05 +02:00
{
[Test]
public void Kernel_can_get_kernel()
{
2013-01-03 02:09:13 +01:00
CentralDispatch.Container.Should().NotBeNull();
2011-10-11 09:11:05 +02:00
}
[Test]
public void Kernel_should_return_same_kernel()
{
2013-01-03 02:09:13 +01:00
var firstKernel = CentralDispatch.Container;
var secondKernel = CentralDispatch.Container;
2011-10-11 09:11:05 +02:00
firstKernel.Should().BeSameAs(secondKernel);
}
[Test]
public void Kernel_should_be_able_to_resolve_ApplicationServer()
{
2013-01-03 02:09:13 +01:00
var appServer = CentralDispatch.Container.Resolve<ApplicationServer>();
2011-10-11 09:11:05 +02:00
appServer.Should().NotBeNull();
}
2011-10-13 04:24:30 +02:00
[Test]
public void Kernel_should_resolve_same_ApplicationServer_instance()
{
2013-01-03 02:09:13 +01:00
var appServer1 = CentralDispatch.Container.Resolve<ApplicationServer>();
var appServer2 = CentralDispatch.Container.Resolve<ApplicationServer>();
2011-10-13 04:24:30 +02:00
appServer1.Should().BeSameAs(appServer2);
}
2011-10-11 09:11:05 +02:00
}
}