Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type InputValue ¶
type InputValue struct { // Pos is the YAML file location where this object started. Pos model.ConfigPos `yaml:"-"` Name model.String `yaml:"name"` Value model.String `yaml:"value"` }
InputValue represents one of the parsed "input" fields from the inputs.yaml file.
func (*InputValue) UnmarshalYAML ¶
func (i *InputValue) UnmarshalYAML(n *yaml.Node) error
UnmarshalYAML implements yaml.Unmarshaler.
func (*InputValue) Validate ¶
func (i *InputValue) Validate() error
type Test ¶
type Test struct { // Pos is the YAML file location where this object started. Pos model.ConfigPos `yaml:"-"` Inputs []*InputValue `yaml:"inputs"` }
Test represents a parsed test.yaml describing test configs.
func (*Test) UnmarshalYAML ¶
UnmarshalYAML implements yaml.Unmarshaler.
Click to show internal directories.
Click to hide internal directories.