blob: d230d799d4895881b40a9eaf5493944c728809e5 [file] [log] [blame]
// Code generated by mockery v0.0.0-dev. DO NOT EDIT.
package mocks
import (
context "context"
testing "testing"
mock "github.com/stretchr/testify/mock"
time "time"
)
// ProjectAudit is an autogenerated mock type for the ProjectAudit type
type ProjectAudit struct {
mock.Mock
}
// StartAudit provides a mock function with given fields: ctx, pollInterval
func (_m *ProjectAudit) StartAudit(ctx context.Context, pollInterval time.Duration) {
_m.Called(ctx, pollInterval)
}
// NewProjectAudit creates a new instance of ProjectAudit. It also registers a cleanup function to assert the mocks expectations.
func NewProjectAudit(t testing.TB) *ProjectAudit {
mock := &ProjectAudit{}
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}