gf/util/gutil/gutil_z_bench_test.go

24 lines
470 B
Go
Raw Normal View History

// Copyright 2018 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.
// go test *.go -bench=".*" -benchmem
package gutil
import (
2019-06-19 09:06:52 +08:00
"testing"
)
func Benchmark_TryCatch(b *testing.B) {
2019-06-19 09:06:52 +08:00
for i := 0; i < b.N; i++ {
TryCatch(func() {
}, func(err interface{}) {
})
}
}