![JAR search and dependency download from the Maven repository](/logo.png)
com.avito.truth.ThrowableSubjects.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truth-extensions Show documentation
Show all versions of truth-extensions Show documentation
Collection of infrastructure libraries and gradle plugins of Avito Android project
The newest version!
package com.avito.truth
import com.google.common.truth.ThrowableSubject
public fun ThrowableSubject.checkCausesDeeply(check: ThrowableSubject.() -> Unit) {
try {
check(this)
} catch (e: java.lang.AssertionError) {
hasCauseThat().checkCausesDeeply(check)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy