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

commonTest.utils.assertions.kt Maven / Gradle / Ivy

package kt.mobius

import kotlin.test.assertEquals

fun assertAllEquals(vararg subjects: Any) {
    subjects.forEach { any ->
        subjects.forEach { any2 ->
            assertEquals(any, any2)
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy