Updated fluent assertion, unignored qulity equality tests.

pull/4/head
kay.one 13 years ago
parent 676f6345a9
commit 46f90255bf

Binary file not shown.

File diff suppressed because it is too large Load Diff

@ -11,43 +11,39 @@ namespace NzbDrone.Core.Test
public class QualityTest : TestBase public class QualityTest : TestBase
{ {
[Test] [Test]
[Ignore("No supported asserts are available")]
public void Icomparer_greater_test() public void Icomparer_greater_test()
{ {
var first = new Quality(QualityTypes.DVD, true); var first = new Quality(QualityTypes.DVD, true);
var second = new Quality(QualityTypes.Bluray1080p, true); var second = new Quality(QualityTypes.Bluray1080p, true);
//Assert.GreaterThan(second, first); second.Should().BeGreaterThan(first);
} }
[Test] [Test]
[Ignore("No supported asserts are available")]
public void Icomparer_greater_proper() public void Icomparer_greater_proper()
{ {
var first = new Quality(QualityTypes.Bluray1080p, false); var first = new Quality(QualityTypes.Bluray1080p, false);
var second = new Quality(QualityTypes.Bluray1080p, true); var second = new Quality(QualityTypes.Bluray1080p, true);
//Assert.GreaterThan(second, first); second.Should().BeGreaterThan(first);
} }
[Test] [Test]
[Ignore("No supported asserts are available")]
public void Icomparer_lesser() public void Icomparer_lesser()
{ {
var first = new Quality(QualityTypes.DVD, true); var first = new Quality(QualityTypes.DVD, true);
var second = new Quality(QualityTypes.Bluray1080p, true); var second = new Quality(QualityTypes.Bluray1080p, true);
//Assert.LessThan(first, second); first.Should().BeLessThan(second);
} }
[Test] [Test]
[Ignore("No supported asserts are available")]
public void Icomparer_lesser_proper() public void Icomparer_lesser_proper()
{ {
var first = new Quality(QualityTypes.DVD, false); var first = new Quality(QualityTypes.DVD, false);
var second = new Quality(QualityTypes.DVD, true); var second = new Quality(QualityTypes.DVD, true);
//Assert.LessThan(first, second); first.Should().BeLessThan(second);
} }
[Test] [Test]
@ -86,7 +82,7 @@ namespace NzbDrone.Core.Test
var first = new Quality(QualityTypes.Bluray1080p, true); var first = new Quality(QualityTypes.Bluray1080p, true);
var second = new Quality(QualityTypes.Bluray1080p, true); var second = new Quality(QualityTypes.Bluray1080p, true);
Assert.IsFalse(first != second); (first != second).Should().BeFalse();
} }
[Test] [Test]

Loading…
Cancel
Save