main.kotlin.ch.tutteli.atrium.domain.robstoll.creating.Fun0AssertionsImpl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atrium-domain-robstoll-common
Show all versions of atrium-domain-robstoll-common
robstoll's <[email protected]> implementation of the domain of Atrium as common module
//TODO remove file with 1.0.0
@file:Suppress("DEPRECATION")
package ch.tutteli.atrium.domain.robstoll.creating
import ch.tutteli.atrium.creating.Expect
import ch.tutteli.atrium.domain.creating.Fun0Assertions
import ch.tutteli.atrium.domain.robstoll.lib.creating._isThrowing
import ch.tutteli.atrium.domain.robstoll.lib.creating._isNotThrowing
import kotlin.reflect.KClass
@Deprecated("Will be removed with 1.0.0")
class Fun0AssertionsImpl : Fun0Assertions {
override fun isThrowing(
expect: Expect Any?>,
expectedType: KClass
) = _isThrowing(expect, expectedType)
override fun R> isNotThrowing(expect: Expect) = _isNotThrowing(expect)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy