``` @Test fun `it should initialize with corr...
# coroutines
v
Copy code
@Test
    fun `it should initialize with correct initial count`() {
        runBlocking(CommonPool) {
            val c = Channel<Unit>(Int.MAX_VALUE)
            repeat(32) { c.send(Unit) }
            assert(c.count() == 32)
        }
    }