Package-level declarations

Functions

Link copied to clipboard
infix inline fun <T : Short?> AssertionContext<T>.is(adjective: NumberAssertionAdjectives)

Verifies that the Short under test applies to a given NumberAssertionAdjectives.

Link copied to clipboard
infix inline fun <T : Short?> AssertionContext<T>.isBetween(boundaries: ClosedRange<Int>)

Verifies that the Short under test is between a lower and an upper boundary. To be successful the value must not be equal to the lower or upper boundary.

Link copied to clipboard
infix inline fun <T : Short?> AssertionContext<T>.isGreaterThan(obj: Short)

Verifies that the Short under test is greater than the given value.

Link copied to clipboard
infix inline fun <T : Short?> AssertionContext<T>.isLessThan(obj: Short)

Verifies that the Short under test is less than the given value.

Link copied to clipboard
infix inline fun <T : Short?> AssertionContext<T>.isNot(adjective: NumberAssertionAdjectives)

Verifies that the Short under test does not apply to a given NumberAssertionAdjectives.