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

org.http4k.tracing.junit.ReportingMode.kt Maven / Gradle / Ivy

The newest version!
package org.http4k.tracing.junit

import org.http4k.tracing.TraceCompletion
import org.http4k.tracing.TraceCompletion.complete
import org.http4k.tracing.TraceCompletion.incomplete

/**
 * Determines if the the TracerBullet will report a render
 */
fun interface ReportingMode : (TraceCompletion) -> Boolean {
    companion object {
        val Always = ReportingMode { true }
        val OnSuccess = ReportingMode { it == complete }
        val OnFailure = ReportingMode { it == incomplete }
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy