77 lines
2.1 KiB
Go
77 lines
2.1 KiB
Go
|
// Code generated by MockGen. DO NOT EDIT.
|
||
|
// Source: github.com/influxdata/influxdb/v2/kv (interfaces: Tx)
|
||
|
|
||
|
// Package mock is a generated GoMock package.
|
||
|
package mock
|
||
|
|
||
|
import (
|
||
|
context "context"
|
||
|
gomock "github.com/golang/mock/gomock"
|
||
|
kv "github.com/influxdata/influxdb/v2/kv"
|
||
|
reflect "reflect"
|
||
|
)
|
||
|
|
||
|
// MockTx is a mock of Tx interface
|
||
|
type MockTx struct {
|
||
|
ctrl *gomock.Controller
|
||
|
recorder *MockTxMockRecorder
|
||
|
}
|
||
|
|
||
|
// MockTxMockRecorder is the mock recorder for MockTx
|
||
|
type MockTxMockRecorder struct {
|
||
|
mock *MockTx
|
||
|
}
|
||
|
|
||
|
// NewMockTx creates a new mock instance
|
||
|
func NewMockTx(ctrl *gomock.Controller) *MockTx {
|
||
|
mock := &MockTx{ctrl: ctrl}
|
||
|
mock.recorder = &MockTxMockRecorder{mock}
|
||
|
return mock
|
||
|
}
|
||
|
|
||
|
// EXPECT returns an object that allows the caller to indicate expected use
|
||
|
func (m *MockTx) EXPECT() *MockTxMockRecorder {
|
||
|
return m.recorder
|
||
|
}
|
||
|
|
||
|
// Bucket mocks base method
|
||
|
func (m *MockTx) Bucket(arg0 []byte) (kv.Bucket, error) {
|
||
|
m.ctrl.T.Helper()
|
||
|
ret := m.ctrl.Call(m, "Bucket", arg0)
|
||
|
ret0, _ := ret[0].(kv.Bucket)
|
||
|
ret1, _ := ret[1].(error)
|
||
|
return ret0, ret1
|
||
|
}
|
||
|
|
||
|
// Bucket indicates an expected call of Bucket
|
||
|
func (mr *MockTxMockRecorder) Bucket(arg0 interface{}) *gomock.Call {
|
||
|
mr.mock.ctrl.T.Helper()
|
||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Bucket", reflect.TypeOf((*MockTx)(nil).Bucket), arg0)
|
||
|
}
|
||
|
|
||
|
// Context mocks base method
|
||
|
func (m *MockTx) 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 *MockTxMockRecorder) Context() *gomock.Call {
|
||
|
mr.mock.ctrl.T.Helper()
|
||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Context", reflect.TypeOf((*MockTx)(nil).Context))
|
||
|
}
|
||
|
|
||
|
// WithContext mocks base method
|
||
|
func (m *MockTx) WithContext(arg0 context.Context) {
|
||
|
m.ctrl.T.Helper()
|
||
|
m.ctrl.Call(m, "WithContext", arg0)
|
||
|
}
|
||
|
|
||
|
// WithContext indicates an expected call of WithContext
|
||
|
func (mr *MockTxMockRecorder) WithContext(arg0 interface{}) *gomock.Call {
|
||
|
mr.mock.ctrl.T.Helper()
|
||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "WithContext", reflect.TypeOf((*MockTx)(nil).WithContext), arg0)
|
||
|
}
|