github.com/kaleido-io/firefly@v0.0.0-20210622132723-8b4b6aacb971/mocks/databasemocks/callbacks.go (about)

     1  // Code generated by mockery v1.0.0. DO NOT EDIT.
     2  
     3  package databasemocks
     4  
     5  import (
     6  	fftypes "github.com/kaleido-io/firefly/pkg/fftypes"
     7  	mock "github.com/stretchr/testify/mock"
     8  )
     9  
    10  // Callbacks is an autogenerated mock type for the Callbacks type
    11  type Callbacks struct {
    12  	mock.Mock
    13  }
    14  
    15  // EventCreated provides a mock function with given fields: sequence
    16  func (_m *Callbacks) EventCreated(sequence int64) {
    17  	_m.Called(sequence)
    18  }
    19  
    20  // MessageCreated provides a mock function with given fields: sequence
    21  func (_m *Callbacks) MessageCreated(sequence int64) {
    22  	_m.Called(sequence)
    23  }
    24  
    25  // PinCreated provides a mock function with given fields: sequence
    26  func (_m *Callbacks) PinCreated(sequence int64) {
    27  	_m.Called(sequence)
    28  }
    29  
    30  // SubscriptionCreated provides a mock function with given fields: id
    31  func (_m *Callbacks) SubscriptionCreated(id *fftypes.UUID) {
    32  	_m.Called(id)
    33  }
    34  
    35  // SubscriptionDeleted provides a mock function with given fields: id
    36  func (_m *Callbacks) SubscriptionDeleted(id *fftypes.UUID) {
    37  	_m.Called(id)
    38  }