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

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

package org.http4k.tracing.junit

import org.junit.jupiter.api.extension.ExtensionContext

/**
 * Responsible for giving names to Traces
 */
fun interface TraceNamer : (ExtensionContext) -> String {
    companion object {
        val TestNameAndMethod = TraceNamer {
            it.testClass.map { it.simpleName + " - " }.orElse("") +
                it.displayName.substringBeforeLast("(")
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy