shouldBeLessOrEqual

Used to assert that one value is less or equal than another value.

void
shouldBeLessOrEqual
(
T
U
)
(
,,
in string message = null
,
in string file = __FILE__
,
in size_t line = __LINE__
)

Parameters

value
Type: T

The value to test.

expected
Type: U

The value it should be less or equal than.

message
Type: string

Exception message.

file
Type: string

The file name that the assert failed in. Should be left as default.

line
Type: size_t

The file line that the assert failed in. Should be left as default.

Throws

If the value is not less or equal, will throw an UnitTestException with expected and actual values.

Examples

// Will throw an exception like "UnitTestException@example.d(6): <5> expected to be less or equal to <10>."
10.shouldBeLessOrEqual(5);

Meta