Refactor helper function to run/not run block of common code on specific platform

Use it in StringBuilder tests
This commit is contained in:
Ilya Gorbunov
2023-04-22 06:41:51 +02:00
committed by Space Team
parent 454e963aa7
commit ace2279631
7 changed files with 32 additions and 19 deletions
+1 -3
View File
@@ -12,9 +12,7 @@ public actual fun assertTypeEquals(expected: Any?, actual: Any?) {
assertEquals(expected?.let { it::class }, actual?.let { it::class })
}
public actual fun testOnJvm(action: () -> Unit) { }
public actual fun testOnJs(action: () -> Unit) { }
public actual val TestPlatform.Companion.current: TestPlatform get() = TestPlatform.Wasm
// TODO: See KT-24975
public actual val isFloat32RangeEnforced: Boolean = false