// Code generated by mockery v2.12.2. DO NOT EDIT. package autopilotevents import ( testing "testing" mock "github.com/stretchr/testify/mock" time "time" ) // mockTimeProvider is an autogenerated mock type for the timeProvider type type mockTimeProvider struct { mock.Mock } // Now provides a mock function with given fields: func (_m *mockTimeProvider) Now() time.Time { ret := _m.Called() var r0 time.Time if rf, ok := ret.Get(0).(func() time.Time); ok { r0 = rf() } else { r0 = ret.Get(0).(time.Time) } return r0 } // newMockTimeProvider creates a new instance of mockTimeProvider. It also registers the testing.TB interface on the mock and a cleanup function to assert the mocks expectations. func newMockTimeProvider(t testing.TB) *mockTimeProvider { mock := &mockTimeProvider{} mock.Mock.Test(t) t.Cleanup(func() { mock.AssertExpectations(t) }) return mock }