All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmMain.io.kotest.mpp.cleanStackTrace.kt Maven / Gradle / Ivy

There is a newer version: 4.0.7
Show newest version
package io.kotest.mpp

/**
 * Returns a stack trace, removing traces of io.kotest if possible, and unwrapping for reflection calls.
 * On some platforms the stack trace may not be available.
 */
actual fun Throwable.throwableLocation(): String? {
   return (cause ?: this).stackTrace?.firstOrNull {
      !it.className.startsWith("io.kotest")
   }?.toString()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy