notToBeGreaterThan

infix fun <T : Comparable<T>> Expect<T>.notToBeGreaterThan(expected: T): Expect<T>(source)

Expects that the subject of this expectation is less than or equal expected. The comparison is carried out with Comparable.compareTo.

You could also use toBeLessThanOrEqualTo which is logically equivalent.

Return

an Expect for the subject of this expectation.

Since

0.17.0

Samples

expect(1) notToBeGreaterThan 2
expect(2) notToBeGreaterThan 2

fails {
    expect(2) notToBeGreaterThan 1
}

Deprecated

'notToBeGreaterThan' is deprecated in favour of 'toBeBeforeOrTheSamePointInTimeAs' which is based on ChronoZonedDateTime.isBefore and ChronoZonedDateTime.isEqual instead of compareTo

Replace with

toBeBeforeOrTheSamePointInTimeAs(expected)

Deprecated overload which shall give a hint to the user/guide the user to use toBeBeforeOrTheSamePointInTimeAs instead.

Since

1.0.0