shouldNotBeGreaterOrEqualTo method

void shouldNotBeGreaterOrEqualTo(
  1. num expected
)

Asserts that the value is not greater or equal to expected.

Implementation

void shouldNotBeGreaterOrEqualTo(num expected) => shouldBeLessThan(expected);