Unit tests for kotlin.collections

Are there any publicly available? They would be very useful when creating custom implementations.

You can take a look at collection related unit tests in Kotlin Standard Library, but these are mostly tests for collection extension functions, and not for collection implementations: kotlin/libraries/stdlib/test/collections at master · JetBrains/kotlin · GitHub

Since Kotlin uses standard JDK collection implementations, we do not test them as they are already tested in JDK.

And when we do provide our own special implemetations, we just ensure they have the same behavior as JDK implementations, like in the following tests (specialLists, specialSets, specialMaps): kotlin/CollectionTest.kt at master · JetBrains/kotlin · GitHub