Assembly Naming, Default Windows Service Account

This commit is contained in:
Qstick
2017-10-24 22:31:37 -04:00
parent f1b1904e07
commit 10c29a65db
62 changed files with 219 additions and 155 deletions
@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Common.Reflection;
@@ -12,7 +12,7 @@ namespace NzbDrone.Common.Test.ReflectionTests
[Test]
public void should_get_properties_from_models()
{
var models = Assembly.Load("NzbDrone.Core").ImplementationsOf<ModelBase>();
var models = Assembly.Load("Lidarr.Core").ImplementationsOf<ModelBase>();
foreach (var model in models)
{
@@ -23,9 +23,9 @@ namespace NzbDrone.Common.Test.ReflectionTests
[Test]
public void should_be_able_to_get_implementations()
{
var models = Assembly.Load("NzbDrone.Core").ImplementationsOf<ModelBase>();
var models = Assembly.Load("Lidarr.Core").ImplementationsOf<ModelBase>();
models.Should().NotBeEmpty();
}
}
}
}