Verifies that the left value is greater than the right value according to a particular comparer.

Namespace:  MbUnit.Framework
Assembly:  MbUnit (in MbUnit.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
public static void GreaterThan<T>(
	T left,
	T right
)
Visual Basic (Declaration)
Public Shared Sub GreaterThan(Of T) ( _
	left As T, _
	right As T _
)

Parameters

left
Type: T
The expected value.
right
Type: T
The actual value.

Type Parameters

T
The type of value.

See Also