Package kotools.assert
Types
Functions
assertEquals
Link copied to clipboard
Asserts that this value equals the other value.
assertFails
Link copied to clipboard
Asserts that the block function throws an error and returns this error.
assertFailsWith
Link copied to clipboard
assertFalse
Link copied to clipboard
Asserts that this value is false
.
Asserts that the result of calling the block function is false
.
assertNotEquals
Link copied to clipboard
Asserts that this value is not equal to the other value.
assertNotNull
Link copied to clipboard
Asserts that this value is not null
and returns it.
Asserts that the result of calling the block function is not null
and returns it.
assertNull
Link copied to clipboard
Asserts that this value is null
.
Asserts that the result of calling the block function is null
.
assertPass
Link copied to clipboard
Asserts that the block function doesn't throw an error and returns its result.
assertTrue
Link copied to clipboard
Asserts that this value is true
.
Asserts that the result of calling the block function is true
.