import io.kotest.core.spec.style.StringSpec
import org.junit.jupiter.api.Assertions.assertNotNull
class Test13 : StringSpec({
  "it should throw exception" {
    val systemUnderTest = SystemUnderTest()
    val exception = kotlin.runCatching {
      systemUnderTest.doStuff()
    }.exceptionOrNull()
    assertNotNull(exception)
  }
})