ICSharpCode.SharpUnit an Unit Testing Framework for .NET

Assertion.AssertEquals Method

Asserts that two doubles are equal concerning a delta. If the expected value is infinity then the delta value is ignored.

Overload List

Asserts that two doubles are equal concerning a delta. If the expected value is infinity then the delta value is ignored.

public static void AssertEquals(double,double,double);

Asserts that two doubles are equal concerning a delta. If the expected value is infinity then the delta value is ignored.

public static void AssertEquals(string,double,double,double);

Asserts that two singles are equal concerning a delta. If the expected value is infinity then the delta value is ignored.

public static void AssertEquals(float,float,float);

Asserts that two floats are equal concerning a delta. If the expected value is infinity then the delta value is ignored.

public static void AssertEquals(string,float,float,float);

Asserts that two objects are equal.

public static void AssertEquals(object,object);

Asserts that two objects are equal.

public static void AssertEquals(string,object,object);

See Also

Assertion Class | Assertion Members | ICSharpCode.SharpUnit Namespace