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

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

There is a newer version: 5.41.0.0
Show newest version
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 - 2025 Weber Informatics LLC | Privacy Policy