default_test.go 127 B

123456789101112
  1. package test
  2. import (
  3. "github.com/google/uuid"
  4. "testing"
  5. )
  6. func TestName(t *testing.T) {
  7. println(uuid.New().String())
  8. }