in mock.go [62:70]
func (m *MockClock) AfterFunc(d time.Duration, f func()) Timer { t := m.NewTimer(d) go func() { <-t.Chan() go f() }() return t }