com.github.mictaege.arete_gradle.SpecificationWriter.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
Gradle reporting plugin for the Arete JUnit5 testing framework.
The newest version!
package com.github.mictaege.arete_gradle
interface SpecificationWriter {
fun writeSpec(step: SpecificationStep)
fun finishPlan(plan: SpecificationPlan)
companion object {
val allWriter = arrayListOf(ConsoleWriter(), HtmlWriter())
}
}