mirror of
https://gitee.com/johng/gf.git
synced 2024-11-30 19:27:46 +08:00
32 lines
662 B
Go
32 lines
662 B
Go
// Copyright 2019 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package gtimer_test
|
|
|
|
import (
|
|
"github.com/gogf/gf/g/os/gtimer"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
var (
|
|
timer = gtimer.New(5, 30*time.Millisecond)
|
|
)
|
|
func Benchmark_Add(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
timer.Add(time.Hour, func() {
|
|
|
|
})
|
|
}
|
|
}
|
|
|
|
func Benchmark_StartStop(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
timer.Start()
|
|
timer.Stop()
|
|
}
|
|
}
|