pascalabcnet/Libraries/AvalonEdit/ICSharpCode.AvalonEdit.Tests/Utils/ExtensionMethodsTests.cs

37 lines
754 B
C#
Raw Normal View History

2015-05-14 22:35:07 +03:00
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
using NUnit.Framework;
namespace ICSharpCode.AvalonEdit.Utils
{
[TestFixture]
public class ExtensionMethodsTests
{
[Test]
public void ZeroIsNotCloseToOne()
{
Assert.IsFalse(0.0.IsClose(1));
}
[Test]
public void ZeroIsCloseToZero()
{
Assert.IsTrue(0.0.IsClose(0));
}
[Test]
public void InfinityIsCloseToInfinity()
{
Assert.IsTrue(double.PositiveInfinity.IsClose(double.PositiveInfinity));
}
[Test]
public void NaNIsNotCloseToNaN()
{
Assert.IsFalse(double.NaN.IsClose(double.NaN));
}
}
}