mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-18 00:22:41 +08:00
55 lines
966 B
Go
55 lines
966 B
Go
package stopwatch_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
_ "unsafe"
|
|
|
|
"github.com/charlienet/go-mixed/stopwatch"
|
|
)
|
|
|
|
func TestWatch(t *testing.T) {
|
|
watch := stopwatch.StartNew()
|
|
|
|
time.Sleep(time.Second * 3)
|
|
t.Log("Elapsed:", watch.Elapsed())
|
|
t.Log("Elapsed:", watch.ElapsedMilliseconds())
|
|
t.Log("Elapsed:", watch.ElapsedMicroseconds())
|
|
t.Log("Elapsed:", watch.ElapsedNanoseconds())
|
|
|
|
time.Sleep(time.Second * 1)
|
|
t.Log("Elapsed:", watch.Elapsed())
|
|
|
|
watch.Restart()
|
|
t.Log("Elapsed:", watch.Elapsed())
|
|
time.Sleep(time.Second * 1)
|
|
t.Log("Elapsed:", watch.Elapsed())
|
|
|
|
watch.Reset()
|
|
|
|
watch.Restart()
|
|
}
|
|
|
|
func TestStop(t *testing.T) {
|
|
watch := stopwatch.StartNew()
|
|
time.Sleep(time.Second)
|
|
|
|
watch.Stop()
|
|
time.Sleep(time.Second)
|
|
watch.Start()
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
t.Log(watch.Elapsed())
|
|
}
|
|
|
|
func BenchmarkNanotime(b *testing.B) {
|
|
b.RunParallel(func(p *testing.PB) {
|
|
watch := stopwatch.StartNew()
|
|
|
|
for p.Next() {
|
|
watch.ElapsedNanoseconds()
|
|
}
|
|
})
|
|
}
|