func assertFuture()

in mock.go [110:114]


func assertFuture(a, b time.Time) {
	if a.After(b) {
		panic(fmt.Sprintf("Tried to tick backwards from %v to %v, but cannot travel into the past!", a, b))
	}
}