[Test] Check that FIR tree does not contain stub types and type variable types after resolution

This commit is contained in:
Dmitriy Novozhilov
2022-10-11 13:34:48 +03:00
committed by Space Team
parent 20045ac0dc
commit 097a86deb5
12 changed files with 181 additions and 89 deletions
@@ -49,7 +49,12 @@ abstract class Assertions {
return collection.joinToString("\n")
}
abstract fun assertAll(exceptions: List<Throwable>)
abstract fun failAll(exceptions: List<Throwable>)
abstract fun assertAll(conditions: List<() -> Unit>)
fun assertAll(vararg conditions: () -> Unit) {
assertAll(conditions.toList())
}
abstract fun fail(message: () -> String): Nothing
}