NUnit.Framework.AssertionFailureMessage.DisplayExpectedValue(object)

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

2 Examples 7

1. Example

Project: 32feet
Source File: AssertionFailureMessage.cs
public void DisplayExpectedAndActual( Object expected, Object actual )
		{
			DisplayExpectedValue( expected );
			DisplayActualValue( actual );
		}

2. Example

Project: 32feet
Source File: AssertionFailureMessage.cs
public void DisplayExpectedAndActual( Object expected, Object actual )
		{
			DisplayExpectedValue( expected );
			DisplayActualValue( actual );
		}