package
Version:
v1.6.1
Opens a new window with list of versions in this module.
Published: Jan 2, 2025
License: Apache-2.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Agent struct {
Validate []Validation `yaml:"validate"`
}
type Interaction struct {
ID string `yaml:"id"`
User User `yaml:"user"`
Agent Agent `yaml:"agent"`
}
type Suite struct {
Name string `yaml:"name"`
Description string `yaml:"description"`
EnvironmentName string `yaml:"environmentName"`
Tests []TestFile `yaml:"tests"`
}
type Test struct {
Name string `yaml:"name"`
Description string `yaml:"description"`
Interactions []Interaction `yaml:"interactions"`
}
type TestFile struct {
ID string `yaml:"id"`
File string `yaml:"file"`
}
type User struct {
Type string `yaml:"type"`
Text string `yaml:"text,omitempty"`
}
type Validation struct {
ID string `yaml:"id"`
Type string `yaml:"type"`
Value string `yaml:"value"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.