Documentation ¶
Index ¶
Constants ¶
View Source
const ( // StepType is a string type representation of step event StepType = "com.github.cardil.wathola.step" // FinishedType os a string type representation of finished event FinishedType = "com.github.cardil.wathola.finished" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ErrorStore ¶
type ErrorStore struct {
// contains filtered or unexported fields
}
ErrorStore contains errors that was thrown
type Finished ¶
type Finished struct {
Count int
}
Finished is step call after verification finishes
type FinishedStore ¶
type FinishedStore interface { RegisterFinished(finished *Finished) State() State Thrown() []string }
FinishedStore registers a finished event type
func NewFinishedStore ¶
func NewFinishedStore(steps StepsStore, errors *ErrorStore) FinishedStore
NewFinishedStore creates FinishedStore
type StepsStore ¶
StepsStore contains methods that register step event type
func NewStepsStore ¶
func NewStepsStore(errors *ErrorStore) StepsStore
NewStepsStore creates StepsStore
Click to show internal directories.
Click to hide internal directories.