assertIsNot

inline fun <T> assertIsNot(value: Any?, message: String? = null)(source)

Asserts that value is not of type T, with an optional message.

Note that due to type erasure the type check may be partial (e.g. assertIsNot<List<String>>(value) only checks for the class being List and not the type of its elements because it's erased).

Since Kotlin

1.5