1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 08:32:40 +08:00
Files
go-mixed/snow_flake/snow_flake_test.go
2022-06-22 10:45:00 +08:00

11 lines
146 B
Go

package snowflake
import "testing"
func TestGetId(t *testing.T) {
s := CreateSnowflake(22)
for i := 0; i < 100; i++ {
t.Log(s.GetId())
}
}