package test.concurrent import kotlin.concurrent.* import junit.framework.* class FListTest() : TestCase() { fun testEmpty() { val empty = FunctionalQueue () Assert.assertTrue(empty.empty) } fun testNonEmpty() { // val empty = FunctionalList.emptyList () // assertTrue(!(empty + 10).empty) } }