blob: f6b0b1a6defa98aae6d1e4d1c479028d8a6f27cc [file] [log] [blame]
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.experimental.channels
import kotlinx.coroutines.experimental.*
import org.junit.*
import kotlin.coroutines.experimental.*
class RandevouzChannelStressTest : TestBase() {
@Test
fun testStress() = runTest {
val n = 100_000 * stressTestMultiplier
val q = RendezvousChannel<Int>()
val sender = launch(coroutineContext) {
for (i in 1..n) q.send(i)
expect(2)
}
val receiver = launch(coroutineContext) {
for (i in 1..n) check(q.receive() == i)
expect(3)
}
expect(1)
sender.join()
receiver.join()
finish(4)
}
}