mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +08:00
12 lines
146 B
Go
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()))
|
|
}
|