commonTest.SignTest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of math-core Show documentation
Show all versions of math-core Show documentation
A multiplatform math library providing mathematical utilities
The newest version!
import expect.expect
import math.signString
import kotlin.test.Test
class SignTest {
@Test
fun should_return_sign() {
expect((-2.6).signString()).toBe("-")
expect((-0.0).signString()).toBe("+")
expect(0.signString()).toBe("+")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy