mirror of
https://gitee.com/dromara/carbon.git
synced 2024-11-29 18:57:37 +08:00
30 lines
493 B
Go
Executable File
30 lines
493 B
Go
Executable File
package carbon
|
|
|
|
import "testing"
|
|
|
|
func BenchmarkCarbon_Lunar(b *testing.B) {
|
|
now := Now()
|
|
for n := 0; n < b.N; n++ {
|
|
now.Lunar()
|
|
}
|
|
}
|
|
|
|
func BenchmarkCarbon_CreateFromLunar(b *testing.B) {
|
|
for n := 0; n < b.N; n++ {
|
|
CreateFromLunar(2023, 12, 8, 0, 0, 0, false)
|
|
}
|
|
}
|
|
|
|
func BenchmarkCarbon_Julian(b *testing.B) {
|
|
now := Now()
|
|
for n := 0; n < b.N; n++ {
|
|
now.Julian()
|
|
}
|
|
}
|
|
|
|
func BenchmarkCarbon_CreateFromJulian(b *testing.B) {
|
|
for n := 0; n < b.N; n++ {
|
|
CreateFromJulian(60332)
|
|
}
|
|
}
|