isSameAs

fun <T> Assert<T>.isSameAs(expected: T)

Deprecated

renamed to isSameInstanceAs

Replace with

isSameInstanceAs(expected)

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

See also