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.
20 lines
500 B
20 lines
500 B
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Test.Common;
|
|
using NzbDrone.Windows.EnvironmentInfo;
|
|
|
|
namespace NzbDrone.Windows.Test.EnvironmentInfo
|
|
{
|
|
[TestFixture]
|
|
[Platform("Win")]
|
|
public class DotNetPlatformInfoFixture : TestBase<DotNetPlatformInfo>
|
|
{
|
|
[Test]
|
|
public void should_get_framework_version()
|
|
{
|
|
Subject.Version.Major.Should().Be(4);
|
|
Subject.Version.Minor.Should().BeOneOf(0, 5, 6, 7, 8);
|
|
}
|
|
}
|
|
}
|