You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
466 B

  1. // Code generated by mockery. DO NOT EDIT.
  2. package mocks
  3. import (
  4. time "time"
  5. mock "github.com/stretchr/testify/mock"
  6. )
  7. // Source is an autogenerated mock type for the Source type
  8. type Source struct {
  9. mock.Mock
  10. }
  11. // Now provides a mock function with given fields:
  12. func (_m *Source) Now() time.Time {
  13. ret := _m.Called()
  14. var r0 time.Time
  15. if rf, ok := ret.Get(0).(func() time.Time); ok {
  16. r0 = rf()
  17. } else {
  18. r0 = ret.Get(0).(time.Time)
  19. }
  20. return r0
  21. }