csUnit Class Library

Assert.Less Method

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

Overload List

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

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

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

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

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

public static void Less(IComparable,IComparable);

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

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

Asserts the first value is less than the second value.

public static void Less(short,short);

Asserts the first value is less than the second value.

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

Asserts the first value is less than the second value.

public static void Less(int,int);

Asserts the first value is less than the second value.

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

Asserts the first value is less than the second value.

public static void Less(long,long);

Asserts the first value is less than the second value.

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

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

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

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

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

See Also

Assert Class | csUnit Namespace