12 строки
309 Б
Go
12 строки
309 Б
Go
package godog
|
|
|
|
import "github.com/cucumber/godog/internal/flags"
|
|
|
|
// Options are suite run options
|
|
// flags are mapped to these options.
|
|
//
|
|
// It can also be used together with godog.RunWithOptions
|
|
// to run test suite from go source directly
|
|
//
|
|
// See the flags for more details
|
|
type Options = flags.Options
|