Documentation ¶
Index ¶
- func JobsProjectNotFound(t goatest.TInterface, ctx context.Context, service *goa.Service, ...) http.ResponseWriter
- func JobsProjectOK(t goatest.TInterface, ctx context.Context, service *goa.Service, ...) (http.ResponseWriter, app.OctorunnerJobCollection)
- func JobsProjectOKLight(t goatest.TInterface, ctx context.Context, service *goa.Service, ...) (http.ResponseWriter, app.OctorunnerJobLightCollection)
- func ListProjectOK(t goatest.TInterface, ctx context.Context, service *goa.Service, ...) (http.ResponseWriter, app.OctorunnerProjectCollection)
- func ShowJobNotFound(t goatest.TInterface, ctx context.Context, service *goa.Service, ...) http.ResponseWriter
- func ShowJobOK(t goatest.TInterface, ctx context.Context, service *goa.Service, ...) (http.ResponseWriter, *app.OctorunnerJob)
- func ShowJobOKLight(t goatest.TInterface, ctx context.Context, service *goa.Service, ...) (http.ResponseWriter, *app.OctorunnerJobLight)
- func ShowLatestJobNotFound(t goatest.TInterface, ctx context.Context, service *goa.Service, ...) http.ResponseWriter
- func ShowLatestJobOK(t goatest.TInterface, ctx context.Context, service *goa.Service, ...) (http.ResponseWriter, *app.OctorunnerJob)
- func ShowLatestJobOKLight(t goatest.TInterface, ctx context.Context, service *goa.Service, ...) (http.ResponseWriter, *app.OctorunnerJobLight)
- func ShowProjectNotFound(t goatest.TInterface, ctx context.Context, service *goa.Service, ...) http.ResponseWriter
- func ShowProjectOK(t goatest.TInterface, ctx context.Context, service *goa.Service, ...) (http.ResponseWriter, *app.OctorunnerProject)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func JobsProjectNotFound ¶
func JobsProjectNotFound(t goatest.TInterface, ctx context.Context, service *goa.Service, ctrl app.ProjectController, projectID int) http.ResponseWriter
JobsProjectNotFound runs the method Jobs of the given controller with the given parameters. It returns the response writer so it's possible to inspect the response headers. If ctx is nil then context.Background() is used. If service is nil then a default service is created.
func JobsProjectOK ¶
func JobsProjectOK(t goatest.TInterface, ctx context.Context, service *goa.Service, ctrl app.ProjectController, projectID int) (http.ResponseWriter, app.OctorunnerJobCollection)
JobsProjectOK runs the method Jobs of the given controller with the given parameters. It returns the response writer so it's possible to inspect the response headers and the media type struct written to the response. If ctx is nil then context.Background() is used. If service is nil then a default service is created.
func JobsProjectOKLight ¶
func JobsProjectOKLight(t goatest.TInterface, ctx context.Context, service *goa.Service, ctrl app.ProjectController, projectID int) (http.ResponseWriter, app.OctorunnerJobLightCollection)
JobsProjectOKLight runs the method Jobs of the given controller with the given parameters. It returns the response writer so it's possible to inspect the response headers and the media type struct written to the response. If ctx is nil then context.Background() is used. If service is nil then a default service is created.
func ListProjectOK ¶
func ListProjectOK(t goatest.TInterface, ctx context.Context, service *goa.Service, ctrl app.ProjectController) (http.ResponseWriter, app.OctorunnerProjectCollection)
ListProjectOK runs the method List of the given controller with the given parameters. It returns the response writer so it's possible to inspect the response headers and the media type struct written to the response. If ctx is nil then context.Background() is used. If service is nil then a default service is created.
func ShowJobNotFound ¶
func ShowJobNotFound(t goatest.TInterface, ctx context.Context, service *goa.Service, ctrl app.JobController, jobID int) http.ResponseWriter
ShowJobNotFound runs the method Show of the given controller with the given parameters. It returns the response writer so it's possible to inspect the response headers. If ctx is nil then context.Background() is used. If service is nil then a default service is created.
func ShowJobOK ¶
func ShowJobOK(t goatest.TInterface, ctx context.Context, service *goa.Service, ctrl app.JobController, jobID int) (http.ResponseWriter, *app.OctorunnerJob)
ShowJobOK runs the method Show of the given controller with the given parameters. It returns the response writer so it's possible to inspect the response headers and the media type struct written to the response. If ctx is nil then context.Background() is used. If service is nil then a default service is created.
func ShowJobOKLight ¶
func ShowJobOKLight(t goatest.TInterface, ctx context.Context, service *goa.Service, ctrl app.JobController, jobID int) (http.ResponseWriter, *app.OctorunnerJobLight)
ShowJobOKLight runs the method Show of the given controller with the given parameters. It returns the response writer so it's possible to inspect the response headers and the media type struct written to the response. If ctx is nil then context.Background() is used. If service is nil then a default service is created.
func ShowLatestJobNotFound ¶
func ShowLatestJobNotFound(t goatest.TInterface, ctx context.Context, service *goa.Service, ctrl app.JobController) http.ResponseWriter
ShowLatestJobNotFound runs the method ShowLatest of the given controller with the given parameters. It returns the response writer so it's possible to inspect the response headers. If ctx is nil then context.Background() is used. If service is nil then a default service is created.
func ShowLatestJobOK ¶
func ShowLatestJobOK(t goatest.TInterface, ctx context.Context, service *goa.Service, ctrl app.JobController) (http.ResponseWriter, *app.OctorunnerJob)
ShowLatestJobOK runs the method ShowLatest of the given controller with the given parameters. It returns the response writer so it's possible to inspect the response headers and the media type struct written to the response. If ctx is nil then context.Background() is used. If service is nil then a default service is created.
func ShowLatestJobOKLight ¶
func ShowLatestJobOKLight(t goatest.TInterface, ctx context.Context, service *goa.Service, ctrl app.JobController) (http.ResponseWriter, *app.OctorunnerJobLight)
ShowLatestJobOKLight runs the method ShowLatest of the given controller with the given parameters. It returns the response writer so it's possible to inspect the response headers and the media type struct written to the response. If ctx is nil then context.Background() is used. If service is nil then a default service is created.
func ShowProjectNotFound ¶
func ShowProjectNotFound(t goatest.TInterface, ctx context.Context, service *goa.Service, ctrl app.ProjectController, projectID int) http.ResponseWriter
ShowProjectNotFound runs the method Show of the given controller with the given parameters. It returns the response writer so it's possible to inspect the response headers. If ctx is nil then context.Background() is used. If service is nil then a default service is created.
func ShowProjectOK ¶
func ShowProjectOK(t goatest.TInterface, ctx context.Context, service *goa.Service, ctrl app.ProjectController, projectID int) (http.ResponseWriter, *app.OctorunnerProject)
ShowProjectOK runs the method Show of the given controller with the given parameters. It returns the response writer so it's possible to inspect the response headers and the media type struct written to the response. If ctx is nil then context.Background() is used. If service is nil then a default service is created.
Types ¶
This section is empty.