mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
31 lines
824 B
C#
31 lines
824 B
C#
|
using System.Reflection;
|
||
|
using FluentAssertions;
|
||
|
using NUnit.Framework;
|
||
|
using NzbDrone.Common.Reflection;
|
||
|
using NzbDrone.Core.Datastore;
|
||
|
using NzbDrone.Test.Common;
|
||
|
|
||
|
namespace NzbDrone.Api.Test.MappingTests
|
||
|
{
|
||
|
public class ReflectionExtensionFixture : TestBase
|
||
|
{
|
||
|
[Test]
|
||
|
public void should_get_properties_from_models()
|
||
|
{
|
||
|
var models = Assembly.Load("NzbDrone.Core").ImplementationsOf<ModelBase>();
|
||
|
|
||
|
foreach (var model in models)
|
||
|
{
|
||
|
model.GetSimpleProperties().Should().NotBeEmpty();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
[Test]
|
||
|
public void should_be_able_to_get_implementations()
|
||
|
{
|
||
|
var models = Assembly.Load("NzbDrone.Core").ImplementationsOf<ModelBase>();
|
||
|
|
||
|
models.Should().NotBeEmpty();
|
||
|
}
|
||
|
}
|
||
|
}
|