diff --git a/integration-testing/src/functionalTest/kotlin/kotlinx.atomicfu.gradle.plugin.test/cases/MppProjectTest.kt b/integration-testing/src/functionalTest/kotlin/kotlinx.atomicfu.gradle.plugin.test/cases/MppProjectTest.kt index c01d2c04..9e49bf17 100644 --- a/integration-testing/src/functionalTest/kotlin/kotlinx.atomicfu.gradle.plugin.test/cases/MppProjectTest.kt +++ b/integration-testing/src/functionalTest/kotlin/kotlinx.atomicfu.gradle.plugin.test/cases/MppProjectTest.kt @@ -6,7 +6,7 @@ package test import kotlinx.atomicfu.gradle.plugin.test.framework.checker.* import kotlinx.atomicfu.gradle.plugin.test.framework.runner.* -import kotlin.test.Test +import kotlin.test.* class MppProjectTest { private val mppSample: GradleBuild = createGradleBuildFromSources("mpp-sample") @@ -31,21 +31,21 @@ class MppProjectTest { @Test fun testMppWithEnabledJsIrTransformation() { mppSample.enableJsIrTransformation = true - assert(mppSample.cleanAndBuild().isSuccessful) + assertTrue(mppSample.cleanAndBuild().isSuccessful) mppSample.checkConsumableDependencies() } @Test fun testMppWithDisabledJsIrTransformation() { mppSample.enableJsIrTransformation = false - assert(mppSample.cleanAndBuild().isSuccessful) + assertTrue(mppSample.cleanAndBuild().isSuccessful) mppSample.checkConsumableDependencies() } @Test fun testMppNativeWithEnabledIrTransformation() { mppSample.enableNativeIrTransformation = true - assert(mppSample.cleanAndBuild().isSuccessful) + assertTrue(mppSample.cleanAndBuild().isSuccessful) mppSample.checkMppNativeCompileOnlyDependencies() // TODO: klib checks are skipped for now because of this problem KT-61143 //mppSample.buildAndCheckNativeKlib() @@ -54,7 +54,7 @@ class MppProjectTest { @Test fun testMppNativeWithDisabledIrTransformation() { mppSample.enableNativeIrTransformation = false - assert(mppSample.cleanAndBuild().isSuccessful) + assertTrue(mppSample.cleanAndBuild().isSuccessful) mppSample.checkMppNativeImplementationDependencies() // TODO: klib checks are skipped for now because of this problem KT-61143 //mppSample.buildAndCheckNativeKlib()