All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.kotest.assertions.arrow.Utils.kt Maven / Gradle / Ivy

The newest version!
package io.kotest.assertions.arrow

import io.kotest.matchers.shouldBe as coreShouldBe
import io.kotest.matchers.shouldNotBe as coreShouldNotBe

internal infix fun  A.shouldBe(a: A): A {
  this coreShouldBe a
  return this
}


internal infix fun  A.shouldNotBe(a: A?): A {
  this coreShouldNotBe a
  return this
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy