com.github.mictaege.arete_gradle.TestIdentifierNormalizer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arete-gradle Show documentation
Show all versions of arete-gradle Show documentation
This repository contains the Arete Gradle Plugin.
The newest version!
package com.github.mictaege.arete_gradle
import com.github.mictaege.arete.Normalizer
import com.github.mictaege.arete.UniqueIdToHashNormalizer
import org.junit.platform.launcher.TestIdentifier
interface TestIdentifierNormalizer: Normalizer {
override fun normalize(input: TestIdentifier) = UniqueIdToHashNormalizer().normalize(input.uniqueId)
}