blob: ed0bc369c08c6383e22ce5f6eeb34a87bc412a3a [file] [log] [blame]
/*
* Copyright 2016-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.rx2
import io.reactivex.*
import kotlinx.coroutines.*
import kotlinx.coroutines.flow.*
import kotlinx.coroutines.reactive.*
import org.junit.Test
import kotlin.test.*
class BackpressureTest : TestBase() {
@Test
fun testBackpressureDropDirect() = runTest {
expect(1)
Flowable.fromArray(1)
.onBackpressureDrop()
.collect {
assertEquals(1, it)
expect(2)
}
finish(3)
}
@Test
fun testBackpressureDropFlow() = runTest {
expect(1)
Flowable.fromArray(1)
.onBackpressureDrop()
.asFlow()
.collect {
assertEquals(1, it)
expect(2)
}
finish(3)
}
}