kotlin.Int |
beBetween |
Verifies that the given integer is between a and b inclusive. fun beBetween(a: Int, b: Int): Matcher<Int> |
beEven |
fun beEven(): Matcher<Int> |
beGreaterThan |
fun beGreaterThan(x: Int): Matcher<Int> |
beGreaterThanOrEqualTo |
fun beGreaterThanOrEqualTo(x: Int): Matcher<Int> |
beInRange |
fun beInRange(range: IntRange): Matcher<Int> |
beLessThan |
fun beLessThan(x: Int): Matcher<Int> |
beLessThanOrEqualTo |
fun beLessThanOrEqualTo(x: Int): Matcher<Int> |
beOdd |
fun beOdd(): Matcher<Int> |
between |
Verifies that the given integer is between a and b inclusive. fun between(a: Int, b: Int): Matcher<Int> |
exactly |
fun exactly(x: Int): Matcher<Int> |
gt |
fun gt(x: Int): Matcher<Int> |
gte |
fun gte(x: Int): Matcher<Int> |
lt |
fun lt(x: Int): Matcher<Int> |
lte |
fun lte(x: Int): Matcher<Int> |
negative |
fun negative(): Matcher<Int> |
positive |
fun positive(): Matcher<Int> |