csUnit Class Library

Assert.NotEquals Method

Asserts that the difference between two doubles is larger than a permitted delta.

Overload List

Asserts that the difference between two doubles is larger than a permitted delta.

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

Asserts that the difference between two doubles is larger than a permitted delta.

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

Assert the inequality of two short primitives and emit the default message when they are equal.

public static void NotEquals(short,short);

Assert the inequality of two integer primitive types and emits a custom message if it is not String.Empty

public static void NotEquals(short,short,string);

Assert the inequality of two integer primitives and emit the default message when they are equal.

public static void NotEquals(int,int);

Assert the inequality of two integer primitive types and emits a custom message if it is not String.Empty

public static void NotEquals(int,int,string);

Assert the inequality of two long primitives and emit the default message when they are equal.

public static void NotEquals(long,long);

Assert the equality of two long primitive types and issues a custom message if it is not String.Empty

public static void NotEquals(long,long,string);

Assert two objects are NOT equal.

public static void NotEquals(object,object);

Assert two objects are NOT equal.

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

Asserts that the difference between two Singles is larger than a permitted delta.

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

Asserts that the difference between two Singles is larger than a permitted delta.

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

See Also

Assert Class | csUnit Namespace