mirror of https://github.com/icsharpcode/ILSpy.git
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.
36 lines
754 B
36 lines
754 B
// 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)); |
|
} |
|
} |
|
}
|
|
|