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

jvmTest.TestVec4.kt Maven / Gradle / Ivy

import io.kotest.matchers.types.shouldHaveSameHashCodeAs
import io.lacuna.artifex.Vec4
import kotlin.test.Test
import org.openrndr.kartifex.Vec4 as KVec4

class TestVec4 {
    @Test
    fun testHash() {
        run {
            val v4 = Vec4(0.0, 0.0, 0.0, 0.0)
            val kv4 = KVec4(0.0, 0.0, 0.0, 0.0)
            v4.shouldHaveSameHashCodeAs(kv4)
        }
        run {
            val v4 = Vec4(2.0, 2.1231,1.3293,4.231)
            val kv4 = KVec4(2.0, 2.1231,1.3293, 4.231)
            v4.shouldHaveSameHashCodeAs(kv4)
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy