1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
package time2
import (
"testing"
"time"
)
var testWheel = NewWheel(1 * time.Millisecond)
func TestTimer(t *testing.T) {
t1 := testWheel.NewTimer(500 * time.Millisecond)
before := time.Now()
<-t1.C
after := time.Now()
println(after.Sub(before).String())
}
func TestTicker(t *testing.T) {
wait := make(chan struct{}, 100)
i := 0
f := func() {
println(time.Now().Unix())
i++
if i >= 10 {
wait <- struct{}{}
}
}
before := time.Now()
t1 := testWheel.TickFunc(1000*time.Millisecond, f)
<-wait
t1.Stop()
after := time.Now()
println(after.Sub(before).String())
}
|