1 package service 2 3 import ( 4 "testing" 5 6 "github.com/alibabacloud-go/tea/utils" 7 ) 8 9 func Test_GetUUID(t *testing.T) { 10 uuid := getUUID() 11 utils.AssertEqual(t, len(uuid), 32) 12 } 13
View as plain text