blob: 271590fa1f867ef3acb8fca84df7f45c141e4da8 [file] [log] [blame]
elinuxhenrik63a42ca2021-09-06 22:16:24 +02001// Code generated by mockery v2.9.3. DO NOT EDIT.
2
elinuxhenrik6f5d3d12021-12-23 16:36:31 +01003package jobshandler
elinuxhenrik63a42ca2021-09-06 22:16:24 +02004
5import (
6 mock "github.com/stretchr/testify/mock"
elinuxhenrikfe61c612021-09-24 15:08:47 +02007 jobs "oransc.org/nonrtric/dmaapmediatorproducer/internal/jobs"
elinuxhenrik63a42ca2021-09-06 22:16:24 +02008)
9
elinuxhenrik6f5d3d12021-12-23 16:36:31 +010010// JobsHandler is an autogenerated mock type for the JobsHandler type
11type JobsHandler struct {
elinuxhenrik63a42ca2021-09-06 22:16:24 +020012 mock.Mock
13}
14
15// AddJob provides a mock function with given fields: _a0
elinuxhenrik6f5d3d12021-12-23 16:36:31 +010016func (_m *JobsHandler) AddJobFromRESTCall(_a0 jobs.JobInfo) error {
elinuxhenrik63a42ca2021-09-06 22:16:24 +020017 ret := _m.Called(_a0)
18
19 var r0 error
20 if rf, ok := ret.Get(0).(func(jobs.JobInfo) error); ok {
21 r0 = rf(_a0)
22 } else {
23 r0 = ret.Error(0)
24 }
25
26 return r0
27}
elinuxhenrikfe61c612021-09-24 15:08:47 +020028
29// DeleteJob provides a mock function with given fields: jobId
elinuxhenrik6f5d3d12021-12-23 16:36:31 +010030func (_m *JobsHandler) DeleteJobFromRESTCall(jobId string) {
elinuxhenrikfe61c612021-09-24 15:08:47 +020031 _m.Called(jobId)
32}