Removing maxValue assert test

This commit is contained in:
fekt
2023-04-09 17:55:36 -04:00
parent ba56233203
commit 9af5584247

View File

@@ -13,13 +13,6 @@ class ZatoshiTest {
}
}
@Test
fun maxValue() {
assertFailsWith<IllegalArgumentException> {
Zatoshi(Zatoshi.MAX_INCLUSIVE + 1)
}
}
@Test
fun plus() {
assertEquals(Zatoshi(4), Zatoshi(1) + Zatoshi(3))