isNotSameAs

fun Assert<Any?>.isNotSameAs(expected: Any?)

Deprecated

renamed to isNotSameInstanceAs

Replace with

isNotSameInstanceAs(expected)

Asserts the value is not the same as the expected one, using !==.

See also