[K/N][Tests] Adjust moved codegen tests to new infra

^KT-61259
This commit is contained in:
Vladimir Sukharev
2023-12-12 17:06:31 +01:00
committed by Space Team
parent a5f3d5b737
commit e15068c62f
301 changed files with 2958 additions and 2382 deletions
+9 -14
View File
@@ -3,7 +3,6 @@
* that can be found in the LICENSE file.
*/
package codegen.bridges.special
import kotlin.test.*
@@ -28,19 +27,15 @@ private object NotEmptyMap : MutableMap<Any, Int> {
fun box(): String {
val n = NotEmptyMap as MutableMap<Any?, Any?>
if (n.get(null) != null) return "fail 1"
if (n.containsKey(null)) return "fail 2"
if (n.containsValue(null)) return "fail 3"
if (n.remove(null) != null) return "fail 4"
if (n.get(null) != null) return "FAIL 1: $n"
if (n.containsKey(null)) return "FAIL 2: $n"
if (n.containsValue(null)) return "FAIL 3: $n"
if (n.remove(null) != null) return "FAIL 4: $n"
if (n.get(1) == null) return "fail 5"
if (!n.containsKey("")) return "fail 6"
if (!n.containsValue(3)) return "fail 7"
if (n.remove("") == null) return "fail 8"
if (n.get(1) == null) return "FAIL 5: $n"
if (!n.containsKey("")) return "FAIL 6: $n"
if (!n.containsValue(3)) return "FAIL 7: $n"
if (n.remove("") == null) return "FAIL 8: $n"
return "Ok"
return "OK"
}
@Test fun runTest() {
println(box())
}