Drop deprecated FunctionalList, FunctionalQueue.

Remove dependency on FunctionalList from tests.
This commit is contained in:
Ilya Gorbunov
2015-07-08 20:32:37 +03:00
parent 0a320a13e5
commit 4de5dd9aeb
8 changed files with 9 additions and 113 deletions
@@ -1,16 +0,0 @@
package test.concurrent
import kotlin.concurrent.*
import junit.framework.*
class FListTest() : TestCase() {
fun testEmpty() {
val empty = FunctionalQueue<Int> ()
Assert.assertTrue(empty.empty)
}
fun testNonEmpty() {
// val empty = FunctionalList.emptyList<Int> ()
// assertTrue(!(empty + 10).empty)
}
}