File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed
kotest-assertions/kotest-assertions-core/src/commonMain/kotlin/io/kotest/matchers
kotest-framework/kotest-framework-engine
src/commonMain/kotlin/io/kotest/engine Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import io.kotest.assertions.Expected
7
7
import io.kotest.assertions.print.Printed
8
8
import io.kotest.assertions.print.print
9
9
10
+ @Suppress(" DEPRECATION" )
10
11
fun <T > invokeMatcher (t : T , matcher : Matcher <T >): T {
11
12
assertionCounter.inc()
12
13
val result = matcher.test(t)
Original file line number Diff line number Diff line change @@ -2968,6 +2968,7 @@ public final class io/kotest/datatest/WordSpecWhenContainerScopeKt {
2968
2968
2969
2969
public final class io/kotest/engine/EngineResult {
2970
2970
public static final field Companion Lio/kotest/engine/EngineResult$Companion;
2971
+ public fun <init> (Ljava/util/List;)V
2971
2972
public fun <init> (Ljava/util/List;Z)V
2972
2973
public final fun addError (Ljava/lang/Throwable;)Lio/kotest/engine/EngineResult;
2973
2974
public final fun addErrors (Ljava/util/List;)Lio/kotest/engine/EngineResult;
Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ data class EngineResult(
18
18
val testFailures : Boolean ,
19
19
) {
20
20
21
+ constructor (errors: List <Throwable >) : this (errors, false )
22
+
21
23
companion object {
22
24
val empty = EngineResult (emptyList(), false )
23
25
}
You can’t perform that action at this time.
0 commit comments