64 lines
1.7 KiB
Go
64 lines
1.7 KiB
Go
|
// Code generated by MockGen. DO NOT EDIT.
|
||
|
// Source: github.com/filecoin-project/lotus/extern/storage-sealing (interfaces: Context)
|
||
|
|
||
|
// Package mocks is a generated GoMock package.
|
||
|
package mocks
|
||
|
|
||
|
import (
|
||
|
context "context"
|
||
|
reflect "reflect"
|
||
|
|
||
|
gomock "github.com/golang/mock/gomock"
|
||
|
)
|
||
|
|
||
|
// MockContext is a mock of Context interface.
|
||
|
type MockContext struct {
|
||
|
ctrl *gomock.Controller
|
||
|
recorder *MockContextMockRecorder
|
||
|
}
|
||
|
|
||
|
// MockContextMockRecorder is the mock recorder for MockContext.
|
||
|
type MockContextMockRecorder struct {
|
||
|
mock *MockContext
|
||
|
}
|
||
|
|
||
|
// NewMockContext creates a new mock instance.
|
||
|
func NewMockContext(ctrl *gomock.Controller) *MockContext {
|
||
|
mock := &MockContext{ctrl: ctrl}
|
||
|
mock.recorder = &MockContextMockRecorder{mock}
|
||
|
return mock
|
||
|
}
|
||
|
|
||
|
// EXPECT returns an object that allows the caller to indicate expected use.
|
||
|
func (m *MockContext) EXPECT() *MockContextMockRecorder {
|
||
|
return m.recorder
|
||
|
}
|
||
|
|
||
|
// Context mocks base method.
|
||
|
func (m *MockContext) Context() context.Context {
|
||
|
m.ctrl.T.Helper()
|
||
|
ret := m.ctrl.Call(m, "Context")
|
||
|
ret0, _ := ret[0].(context.Context)
|
||
|
return ret0
|
||
|
}
|
||
|
|
||
|
// Context indicates an expected call of Context.
|
||
|
func (mr *MockContextMockRecorder) Context() *gomock.Call {
|
||
|
mr.mock.ctrl.T.Helper()
|
||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Context", reflect.TypeOf((*MockContext)(nil).Context))
|
||
|
}
|
||
|
|
||
|
// Send mocks base method.
|
||
|
func (m *MockContext) Send(arg0 interface{}) error {
|
||
|
m.ctrl.T.Helper()
|
||
|
ret := m.ctrl.Call(m, "Send", arg0)
|
||
|
ret0, _ := ret[0].(error)
|
||
|
return ret0
|
||
|
}
|
||
|
|
||
|
// Send indicates an expected call of Send.
|
||
|
func (mr *MockContextMockRecorder) Send(arg0 interface{}) *gomock.Call {
|
||
|
mr.mock.ctrl.T.Helper()
|
||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Send", reflect.TypeOf((*MockContext)(nil).Send), arg0)
|
||
|
}
|