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

com.avito.truth.ThrowableSubjects.kt Maven / Gradle / Ivy

Go to download

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