blob: a445ea0487882cb991e8ea840f9b1f5d338419a2 [file]
// FUNCTION: org.junit.jupiter.api.Assertions.assertTrue
// WITH_JUNIT5
import org.junit.jupiter.api.Assertions.assertTrue
fun box() = expectThrowableMessage {
val message = "Message:"
assertTrue(1 != 1, message)
}