func ExecuteAfter()

in step_exec_options.go [35:40]


func ExecuteAfter(step StepDefinitionMeta) ExecutionOptionPreparer {
	return func(options *StepExecutionOptions) *StepExecutionOptions {
		options.DependOn = append(options.DependOn, step.GetName())
		return options
	}
}