[BTA tests] Introduce shortcut assertion expectFailWithError

^KT-61860 In Progress
This commit is contained in:
Alexander.Likhachev
2024-03-05 11:44:02 +01:00
committed by Space Team
parent 16a07e82bc
commit b5fbb3f925
@@ -0,0 +1,18 @@
/*
* Copyright 2010-2024 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.buildtools.api.tests.compilation.assertions
import org.jetbrains.kotlin.buildtools.api.tests.compilation.model.CompilationOutcome
import org.jetbrains.kotlin.buildtools.api.tests.compilation.model.LogLevel
fun CompilationOutcome.expectFailWithError(vararg expectedErrorLines: Regex) {
expectFailWithError(expectedErrorLines.toSet())
}
fun CompilationOutcome.expectFailWithError(expectedErrorLines: Set<Regex>) {
expectFail()
assertLogContainsPatterns(LogLevel.ERROR, expectedErrorLines)
}