com.github.iskrenyp.slackreporter.api.ReportOnSlack.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spock-slack-reporter Show documentation
Show all versions of spock-slack-reporter Show documentation
A simple annotation driven local extension for Spock framework, which enables you to screen record your Specifications
package com.github.iskrenyp.slackreporter.api
import org.spockframework.runtime.extension.ExtensionAnnotation
import java.lang.annotation.ElementType
import java.lang.annotation.Retention
import java.lang.annotation.RetentionPolicy
import java.lang.annotation.Target
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@ExtensionAnnotation(SlackReporterAnnotationDrivenExtension.class)
@interface ReportOnSlack {
String value()
}