2023-01-25 15:09:44 +01:00
// Code generated by mockery v2.16.0. DO NOT EDIT.
2022-06-17 09:09:01 -04:00
package dashboardsnapshots
import (
context "context"
mock "github.com/stretchr/testify/mock"
)
// MockService is an autogenerated mock type for the Service type
type MockService struct {
mock . Mock
}
// CreateDashboardSnapshot provides a mock function with given fields: _a0, _a1
2023-01-25 15:09:44 +01:00
func ( _m * MockService ) CreateDashboardSnapshot ( _a0 context . Context , _a1 * CreateDashboardSnapshotCommand ) ( * DashboardSnapshot , error ) {
2022-06-17 09:09:01 -04:00
ret := _m . Called ( _a0 , _a1 )
2023-01-25 15:09:44 +01:00
var r0 * DashboardSnapshot
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * CreateDashboardSnapshotCommand ) * DashboardSnapshot ) ; ok {
2022-06-17 09:09:01 -04:00
r0 = rf ( _a0 , _a1 )
} else {
2023-01-25 15:09:44 +01:00
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * DashboardSnapshot )
}
2022-06-17 09:09:01 -04:00
}
2023-01-25 15:09:44 +01:00
var r1 error
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * CreateDashboardSnapshotCommand ) error ) ; ok {
r1 = rf ( _a0 , _a1 )
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
2022-06-17 09:09:01 -04:00
}
// DeleteDashboardSnapshot provides a mock function with given fields: _a0, _a1
func ( _m * MockService ) DeleteDashboardSnapshot ( _a0 context . Context , _a1 * DeleteDashboardSnapshotCommand ) error {
ret := _m . Called ( _a0 , _a1 )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * DeleteDashboardSnapshotCommand ) error ) ; ok {
r0 = rf ( _a0 , _a1 )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DeleteExpiredSnapshots provides a mock function with given fields: _a0, _a1
func ( _m * MockService ) DeleteExpiredSnapshots ( _a0 context . Context , _a1 * DeleteExpiredSnapshotsCommand ) error {
ret := _m . Called ( _a0 , _a1 )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * DeleteExpiredSnapshotsCommand ) error ) ; ok {
r0 = rf ( _a0 , _a1 )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// GetDashboardSnapshot provides a mock function with given fields: _a0, _a1
2023-01-25 15:09:44 +01:00
func ( _m * MockService ) GetDashboardSnapshot ( _a0 context . Context , _a1 * GetDashboardSnapshotQuery ) ( * DashboardSnapshot , error ) {
2022-06-17 09:09:01 -04:00
ret := _m . Called ( _a0 , _a1 )
2023-01-25 15:09:44 +01:00
var r0 * DashboardSnapshot
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * GetDashboardSnapshotQuery ) * DashboardSnapshot ) ; ok {
2022-06-17 09:09:01 -04:00
r0 = rf ( _a0 , _a1 )
} else {
2023-01-25 15:09:44 +01:00
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * DashboardSnapshot )
}
2022-06-17 09:09:01 -04:00
}
2023-01-25 15:09:44 +01:00
var r1 error
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * GetDashboardSnapshotQuery ) error ) ; ok {
r1 = rf ( _a0 , _a1 )
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
2022-06-17 09:09:01 -04:00
}
// SearchDashboardSnapshots provides a mock function with given fields: _a0, _a1
2023-01-25 15:09:44 +01:00
func ( _m * MockService ) SearchDashboardSnapshots ( _a0 context . Context , _a1 * GetDashboardSnapshotsQuery ) ( DashboardSnapshotsList , error ) {
2022-06-17 09:09:01 -04:00
ret := _m . Called ( _a0 , _a1 )
2023-01-25 15:09:44 +01:00
var r0 DashboardSnapshotsList
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * GetDashboardSnapshotsQuery ) DashboardSnapshotsList ) ; ok {
2022-06-17 09:09:01 -04:00
r0 = rf ( _a0 , _a1 )
} else {
2023-01-25 15:09:44 +01:00
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( DashboardSnapshotsList )
}
2022-06-17 09:09:01 -04:00
}
2023-01-25 15:09:44 +01:00
var r1 error
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * GetDashboardSnapshotsQuery ) error ) ; ok {
r1 = rf ( _a0 , _a1 )
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
type mockConstructorTestingTNewMockService interface {
mock . TestingT
Cleanup ( func ( ) )
2022-06-17 09:09:01 -04:00
}
2023-01-25 15:09:44 +01:00
// NewMockService creates a new instance of MockService. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewMockService ( t mockConstructorTestingTNewMockService ) * MockService {
2022-06-17 09:09:01 -04:00
mock := & MockService { }
mock . Mock . Test ( t )
t . Cleanup ( func ( ) { mock . AssertExpectations ( t ) } )
return mock
}