NUnit.Framework.GreaterAsserter.DisplayDifferences()

Here are the examples of the csharp api NUnit.Framework.GreaterAsserter.DisplayDifferences() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : greaterasserter.cs
with MIT License
from inthehand

public override bool Test()
		{
			if ( ((IComparable)actual).CompareTo(expected) > 0 ) return true;

			DisplayDifferences();
			return false;
		}