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

com.avito.truth.TruthExtensions.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.Truth.assertThat

public inline fun  assertThat(any: Any?, assert: T.() -> Unit) {
    assertThat(any).isNotNull()
    assertThat(any).isInstanceOf()
    assert(any as T)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy