infix fun <T : Comparable<T>> Expect<T>.toBeGreaterThanOrEqualTo(expected: T): Expect<T>
(source)
Expects that the subject of this
expectation is greater than or equal (>=
) expected.
The comparison is carried out with Comparable.compareTo.
You could also use notToBeLessThan which is logically equivalent.
expect(2) toBeGreaterThanOrEqualTo 1
expect(2) toBeGreaterThanOrEqualTo 2
fails {
expect(1) toBeGreaterThanOrEqualTo 2
}
Return
an Expect for the subject of this
expectation.
Since
0.17.0