Searched defs:assertNotNull (Results 1 – 3 of 3) sorted by relevance
195 internal fun <T : Any> assertNotNull(obj: T?, messageBlock: (() -> String)? = null): T = in assertNotNull() method
255 private fun <T : Any> assertNotNull(value: T?): T = value.also { assertThat(it).isNotNull() }!! in <lambda>() method
323 private fun <T : Any> assertNotNull(obj: T?): T = obj.also { assertThat(it).isNotNull() }!! in <lambda>() method