toBeGreaterThanOrEqualTo
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.
Return
an Expect for the subject of this
expectation.
Since
0.17.0
Samples
expect(2).toBeGreaterThanOrEqualTo(1)
expect(2).toBeGreaterThanOrEqualTo(2)
fails {
expect(1).toBeGreaterThanOrEqualTo(2)
}
Deprecated
'toBeGreaterThanOrEqualTo' is deprecated in favour of 'toBeAfterOrTheSamePointInTimeAs' which is based on ChronoZonedDateTime.isAfter and ChronoZonedDateTime.isEqual instead of compareTo
Replace with
toBeAfterOrTheSamePointInTimeAs(expected)
Content copied to clipboard