You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Code generated by mockery v2.12.1. DO NOT EDIT.
package mock
import (
module "github.com/onflow/flow-go/module"
mock "github.com/stretchr/testify/mock"
testing "testing"
)
// Job is an autogenerated mock type for the Job type
type Job struct {
mock.Mock
}
// ID provides a mock function with given fields:
func (_m *Job) ID() module.JobID {
ret := _m.Called()
var r0 module.JobID
if rf, ok := ret.Get(0).(func() module.JobID); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(module.JobID)
}
return r0
}
// NewJob creates a new instance of Job. It also registers the testing.TB interface on the mock and a cleanup function to assert the mocks expectations.