We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe12ef1 commit b3ce783Copy full SHA for b3ce783
data/src/test/java/com/hoc/flowmvi/data/UserRepositoryImplRealAPITest.kt
@@ -56,11 +56,14 @@ class UserRepositoryImplRealAPITest : KoinTest {
56
57
@Test
58
fun getUsers() = runBlocking {
59
- val result = userRepo
60
- .getUsers()
61
- .first()
62
- assertTrue(result.isRight())
63
- assertTrue(result.getOrThrow.isNotEmpty())
+ kotlin.runCatching {
+ val result = userRepo
+ .getUsers()
+ .first()
+ assertTrue(result.isRight())
64
+ assertTrue(result.getOrThrow.isNotEmpty())
65
+ }
66
+ Unit
67
}
68
69
0 commit comments