Sha256: 23440bc60feb0a42f3d29969e974ae1a319a9857af672c5d4010b38aacf8dfe7
Contents?: true
Size: 465 Bytes
Versions: 4
Compression:
Stored size: 465 Bytes
Contents
package gherkin.formatter; import gherkin.Listener; import java.util.List; /** * This interface extends the Listener interface with extra methods for formatting * Gherkin features during execution. */ public interface Formatter extends Listener { void scenario(String keyword, String name, int line, String location); void step(String keyword, String name, int line, String status, List<Argument> arguments, String location); void flushTable(); }
Version data entries
4 entries across 4 versions & 1 rubygems