github.com/tooploox/oya@v0.0.21-0.20230524103240-1cda1861aad6/testutil/gherkin/gherkin.go (about)

     1  package gherkin
     2  
     3  import "github.com/cucumber/messages-go/v10"
     4  
     5  // Scenario represents the executed scenario
     6  type Scenario = messages.Pickle
     7  
     8  // Step represents the executed step
     9  type Step = messages.Pickle_PickleStep
    10  
    11  // DocString represents the DocString argument made to a step definition
    12  type DocString = messages.PickleStepArgument_PickleDocString
    13  
    14  // Table represents the Table argument made to a step definition
    15  type Table = messages.PickleStepArgument_PickleTable