[Wasm] Add kotlin-test-wasm library

This commit is contained in:
Igor Laevsky
2021-10-01 21:36:36 +03:00
committed by TeamCityServer
parent 6ba65065ee
commit 14eee7c539
11 changed files with 414 additions and 12 deletions
@@ -66,7 +66,7 @@ public actual open class ClassCastException actual constructor(message: String?)
actual constructor() : this(null)
}
public actual open class AssertionError private constructor(message: String?, cause: Throwable?) : Error(message, cause) {
public actual open class AssertionError constructor(message: String?, cause: Throwable?) : Error(message, cause) {
actual constructor() : this(null)
constructor(message: String?) : this(message, null)
actual constructor(message: Any?) : this(message.toString(), message as? Throwable)