Tanbir Ali
05/12/2023, 7:09 PMfun <T> Expect<T>.notToBeAnInstanceOf(expected: T): Expect<T> = _logicAppend { toBe(expected) }
I have followed the tobe function as in anyExceptions.kt
fun <T> Expect<T>.toEqual(expected: T): Expect<T> = _logicAppend { toBe(expected) }
robstoll
05/14/2023, 7:16 PM