Adjust testData to isEmpty/key/value transformations

This commit is contained in:
Denis Zharkov
2015-10-09 14:16:51 +03:00
parent 83b680935b
commit 97ed8c83a0
28 changed files with 56 additions and 56 deletions
@@ -1,6 +1,6 @@
abstract class C : Test.A, List<String> {
override val size: Int get() = null!!
override fun isEmpty(): Boolean = null!!
override val isEmpty: Boolean get() = null!!
override fun contains(o: String): Boolean = null!!
override fun iterator(): Iterator<String> = null!!
override fun containsAll(c: Collection<String>): Boolean = null!!
@@ -58,7 +58,7 @@ open class KList<E> : MutableList<E> {
override val size: Int
get() = throw UnsupportedOperationException()
override fun isEmpty(): Boolean {
override val isEmpty: Boolean get() {
throw UnsupportedOperationException()
}
@@ -2,7 +2,7 @@ open class KList : MutableList<String> {
override val size: Int
get() = throw UnsupportedOperationException()
override fun isEmpty(): Boolean {
override val isEmpty: Boolean get() {
throw UnsupportedOperationException()
}