nexo/services/core/server/einterfaces/mocks/SamlDiagnosticInterface.go

48 lines
1.4 KiB
Go

// Code generated by mockery v2.53.4. DO NOT EDIT.
// Regenerate this file using `make einterfaces-mocks`.
package mocks
import (
model "github.com/mattermost/mattermost/server/public/model"
request "github.com/mattermost/mattermost/server/public/shared/request"
mock "github.com/stretchr/testify/mock"
)
// SamlDiagnosticInterface is an autogenerated mock type for the SamlDiagnosticInterface type
type SamlDiagnosticInterface struct {
mock.Mock
}
// RunSupportPacketTest provides a mock function with given fields: rctx, settings
func (_m *SamlDiagnosticInterface) RunSupportPacketTest(rctx request.CTX, settings model.SamlSettings) error {
ret := _m.Called(rctx, settings)
if len(ret) == 0 {
panic("no return value specified for RunSupportPacketTest")
}
var r0 error
if rf, ok := ret.Get(0).(func(request.CTX, model.SamlSettings) error); ok {
r0 = rf(rctx, settings)
} else {
r0 = ret.Error(0)
}
return r0
}
// NewSamlDiagnosticInterface creates a new instance of SamlDiagnosticInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
// The first argument is typically a *testing.T value.
func NewSamlDiagnosticInterface(t interface {
mock.TestingT
Cleanup(func())
}) *SamlDiagnosticInterface {
mock := &SamlDiagnosticInterface{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}