[Commonizer] Mute tests due to KT-56207
This commit is contained in:
committed by
Space Team
parent
25c600c556
commit
993695a7d0
+11
-2
@@ -10,13 +10,13 @@ import kotlin.contracts.ExperimentalContracts
|
||||
@ExperimentalContracts
|
||||
class ClassifierCommonizationFromSourcesTest : AbstractCommonizationFromSourcesTest() {
|
||||
|
||||
fun testClassKindAndModifiers() = doTestSuccessfulCommonization()
|
||||
fun testClassKindAndModifiers() = ignore { doTestSuccessfulCommonization() }
|
||||
|
||||
fun testModality() = doTestSuccessfulCommonization()
|
||||
|
||||
fun testVisibility() = doTestSuccessfulCommonization()
|
||||
|
||||
fun testConstructors() = doTestSuccessfulCommonization()
|
||||
fun testConstructors() = ignore { doTestSuccessfulCommonization() }
|
||||
|
||||
fun testTypeParameters() = doTestSuccessfulCommonization()
|
||||
|
||||
@@ -25,4 +25,13 @@ class ClassifierCommonizationFromSourcesTest : AbstractCommonizationFromSourcesT
|
||||
fun testTypeAliases() = doTestSuccessfulCommonization()
|
||||
|
||||
fun testDifferentTypeAliasesInArguments() = doTestSuccessfulCommonization()
|
||||
|
||||
private inline fun ignore(block: () -> Unit) {
|
||||
try {
|
||||
block()
|
||||
error("Test is passing, remove `ignore` call")
|
||||
} catch (e: AssertionError) {
|
||||
return
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user