32 Star 411 Fork 63

GVPdromara/carbon

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
season_bench_test.go 822 Bytes
一键复制 编辑 原始数据 按行查看 历史
gouguoyin 提交于 2023-12-28 11:27 . 添加性能测试文件
package carbon
import "testing"
func BenchmarkCarbon_Season(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.Season()
}
}
func BenchmarkCarbon_StartOfSeason(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.StartOfSeason()
}
}
func BenchmarkCarbon_EndOfSeason(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.EndOfSeason()
}
}
func BenchmarkCarbon_IsSpring(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.IsSpring()
}
}
func BenchmarkCarbon_IsSummer(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.IsSummer()
}
}
func BenchmarkCarbon_IsAutumn(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.IsAutumn()
}
}
func BenchmarkCarbon_IsWinter(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.IsWinter()
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/dromara/carbon.git
git@gitee.com:dromara/carbon.git
dromara
carbon
carbon
master

搜索帮助