Check more flags in bytecode listing tests

This commit is contained in:
Dmitry Petrov
2020-02-25 16:14:59 +03:00
parent ee9be61c20
commit 84baa0b4c2
28 changed files with 197 additions and 154 deletions
@@ -10,19 +10,19 @@ class ImmutableCollectionmpl<E> : ImmutableCollection<E> {
get() = throw UnsupportedOperationException()
override fun contains(element: E): Boolean {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
throw UnsupportedOperationException("not implemented")
}
override fun containsAll(elements: Collection<E>): Boolean {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
throw UnsupportedOperationException("not implemented")
}
override fun isEmpty(): Boolean {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
throw UnsupportedOperationException("not implemented")
}
override fun iterator(): Iterator<E> {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
throw UnsupportedOperationException("not implemented")
}
override fun add(element: E): ImmutableCollection<E> = this