Discover Packages
gitlab.com/rodrigoodhin/gocure
models
package
Version:
v0.0.0-...-0895c7c
Opens a new window with list of versions in this module.
Published: Oct 8, 2023
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 5
Opens a new window with list of known importers.
Documentation
Documentation
¶
type DocString struct {
Value string `json:"value"`
ContentType string `json:"content_type"`
Line int `json:"line"`
}
type Embed struct {
Media Media `json:"media"`
Data string `json:"data"`
}
type Feature struct {
URI string `json:"uri"`
ID string `json:"id"`
Keyword string `json:"keyword"`
Name string `json:"name"`
Description string `json:"description"`
Line int `json:"line"`
Tags []Tags `json:"tags"`
Scenarios []Scenario `json:"elements"`
Embeddings []Embed `json:"embeddings"`
}
type Match struct {
Location string `json:"location"`
}
type Media struct {
Type string `json:"type"`
}
type Metadata struct {
AppVersion string `json:"appVersion,omitempty"`
TestEnvironment string `json:"testEnvironment,omitempty"`
Browser string `json:"browser,omitempty"`
Platform string `json:"platform,omitempty"`
Parallel string `json:"parallel,omitempty"`
Executed string `json:"executed,omitempty"`
}
type Result struct {
Status string `json:"status"`
ErrorMessage string `json:"error_message"`
Duration int `json:"duration"`
}
type Row struct {
Cells []string `json:"cells"`
}
type Scenario struct {
ID string `json:"id"`
Keyword string `json:"keyword"`
Name string `json:"name"`
Description string `json:"description"`
Line int `json:"line"`
Type string `json:"type"`
Tags []Tags `json:"tags"`
Steps []Step `json:"steps"`
Embeddings []Embed `json:"embeddings"`
}
type Step struct {
Keyword string `json:"keyword"`
Name string `json:"name"`
Line int `json:"line"`
Match Match `json:"match"`
Result Result `json:"result"`
Rows []Row `json:"rows"`
Embeddings []Embed `json:"embeddings"`
DocString DocString `json:"doc_string"`
}
type Tags struct {
Name string `json:"name"`
Line int `json:"line"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.