mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +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()))
|
||
|
}
|