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

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

There is a newer version: 5.41.0.0
Show 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 render output
 */
fun interface RenderingMode : (TraceCompletion) -> Boolean {
    companion object {
        val Always = RenderingMode { true }
        val OnSuccess = RenderingMode { it == complete }
        val OnFailure = RenderingMode { it == incomplete }
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy