This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package co.freeside.spock.vertx | |
| import org.spockframework.runtime.extension.ExtensionAnnotation | |
| import java.lang.annotation.* | |
| /** | |
| * Add this annotation to any specification fields that should be registered as Vert.x event bus handlers during test | |
| * execution. The field will be registered on the event bus before each feature method and unregistered afterwards. If | |
| * the field is `@Shared` it will be registered and unregistered at the start and end of the spec. | |
| * |