jvmMain.com.bkahlert.kommons.test.junit.SimpleIdResolver.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kommons-test Show documentation
Show all versions of kommons-test Show documentation
Kommons Test is a Kotlin Multiplatform Library to ease testing.
package com.bkahlert.kommons.test.junit
import org.junit.jupiter.api.extension.ExtensionContext
import org.junit.jupiter.api.extension.ParameterContext
import org.junit.jupiter.api.extension.ParameterResolver
import org.junit.jupiter.api.extension.support.TypeBasedParameterResolver
import org.junit.platform.engine.UniqueId
/** [ParameterResolver] that resolves the [SimpleId] of the current test or container.*/
public class SimpleIdResolver : TypeBasedParameterResolver() {
override fun resolveParameter(parameterContext: ParameterContext, extensionContext: ExtensionContext): SimpleId =
extensionContext.simpleId
public companion object {
/** The [SimpleId] of the current test or container. */
public val ExtensionContext.simpleId: SimpleId get(): SimpleId = SimpleId.from(UniqueId.parse(uniqueId))
}
}