github.com/codingeasygo/util@v0.0.0-20231206062002-1ce2f004b7d9/uuid/uuid_test.go (about)

     1  package uuid
     2  
     3  import (
     4  	"fmt"
     5  	"testing"
     6  )
     7  
     8  func TestNew(t *testing.T) {
     9  	fmt.Println(New())
    10  	fmt.Println(MID())
    11  }