Remove GetTest.GetError
This commit is contained in:
parent
be2fa210cc
commit
99515df0f7
@ -5,8 +5,6 @@ import com.natpryce.hamkrest.equalTo
|
|||||||
import org.junit.jupiter.api.Test
|
import org.junit.jupiter.api.Test
|
||||||
|
|
||||||
internal class GetTest {
|
internal class GetTest {
|
||||||
private object GetError
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
internal fun `get should return the result value if ok`() {
|
internal fun `get should return the result value if ok`() {
|
||||||
val value = ok(12).get()
|
val value = ok(12).get()
|
||||||
@ -15,7 +13,7 @@ internal class GetTest {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
internal fun `get should return null if not ok`() {
|
internal fun `get should return null if not ok`() {
|
||||||
val value = err(GetError).get()
|
val value = err("error").get()
|
||||||
assertThat(value, equalTo(null))
|
assertThat(value, equalTo(null))
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -39,7 +37,7 @@ internal class GetTest {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
internal fun `getOr should return default value if not ok`() {
|
internal fun `getOr should return default value if not ok`() {
|
||||||
val value = err(GetError).getOr("default")
|
val value = err("error").getOr("default")
|
||||||
assertThat(value, equalTo("default"))
|
assertThat(value, equalTo("default"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user