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 7746cdd commit 6910874Copy full SHA for 6910874
shared/src/jvmTest/kotlin/dev/suresh/PlatformTest.kt
@@ -1,8 +1,6 @@
1
package dev.suresh
2
3
-import dev.suresh.http.MediaApiClient
4
import kotlin.test.assertTrue
5
-import kotlinx.coroutines.test.runTest
6
import org.junit.jupiter.api.Test
7
8
class PlatformTest {
@@ -12,10 +10,4 @@ class PlatformTest {
12
10
assertTrue(Greeting().greeting().contains("JVM"), message = "JVM platform check failed!")
13
11
DOP.run()
14
}
15
-
16
- @Test
17
- fun httpClientTest() = runTest {
18
- MediaApiClient().images().forEach { s -> println(s) }
19
- println("Done")
20
- }
21
0 commit comments