csUnit Class Library

Assert.Greater Method

Asserts the first value is greater than the second value, within a specified tolerance.

Overload List

Asserts the first value is greater than the second value, within a specified tolerance.

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

Asserts the first value is greater than the second value, within a specified tolerance.

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

Asserts that an object is greater than a different object. Both objects must be of the same type, and that type must implement the System.IComparable interface.

public static void Greater(IComparable,IComparable);

Asserts that an object is greater than a different object. Both objects must be of the same type, and that type must implement the System.IComparable interface.

public static void Greater(IComparable,IComparable,string);

Asserts the first value is greater than the second value.

public static void Greater(short,short);

Asserts the first value is greater than the second value.

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

Asserts the first value is greater than the second value.

public static void Greater(int,int);

Asserts the first value is greater than the second value.

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

Asserts the first value is greater than the second value.

public static void Greater(long,long);

Asserts the first value is greater than the second value.

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

Asserts the first value is greater than the second value, within a specified tolerance.

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

Asserts the first value is greater than the second value, within a specified tolerance.

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

See Also

Assert Class | csUnit Namespace