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

org.jetbrains.spek.engine.ThrowableCollector.kt Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
package org.jetbrains.spek.engine

/**
 * @author Ranie Jade Ramiso
 */
class ThrowableCollector {
    private var throwable: Throwable? = null

    fun add(throwable: Throwable) {
        if (this.throwable == null) {
            this.throwable = throwable
        } else {
            (this.throwable as java.lang.Throwable).addSuppressed(throwable)
        }
    }


    inline fun executeSafely(block: () -> Unit) {
        try {
            block.invoke()
        } catch (e: Throwable) {
            add(e)
        }
    }

    fun isEmpty() = throwable == null


    fun assertEmpty() {
        if (throwable != null) {
            throw throwable!!
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy