go-zero/core/utils/uuid_test.go
2020-07-26 17:09:05 +08:00

12 lines
146 B
Go

package utils
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestUuid(t *testing.T) {
assert.Equal(t, 36, len(NewUuid()))
}