Sign in
skia
/
buildbot
/
a2950260d0fb
/
.
/
go
/
now
/
mocks
/
generate.go
blob: e52ee2d33d97ec6f471c1a1b7fb94328aca1f6ab [
file
] [
log
] [
blame
]
package mocks
import (
time "time"
"go.skia.org/infra/go/now"
)
func NewTimeTickerFunc(ch <-chan time.Time) now.NewTimeTickerFunc {
return func(unused time.Duration) now.TimeTicker {
rv := &TimeTicker{}
rv.On("C").Return(ch)
return rv
}
}