package fakeclock import ( "time" "code.cloudfoundry.org/clock" ) type fakeTicker struct { timer clock.Timer } func newFakeTicker(timer *fakeTimer) *fakeTicker { return &fakeTicker{ timer: timer, } } func (ft *fakeTicker) C() <-chan time.Time { return ft.timer.C() } func (ft *fakeTicker) Stop() { ft.timer.Stop() }