From c8656e80d783c29ce32a7357b89488f89eae2e26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=85=89=E6=98=A5?= Date: Sat, 5 Jun 2021 09:34:19 +0800 Subject: [PATCH] update --- .gitignore | 3 +-- helper/uuid/uuid_test.go | 13 +++++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 helper/uuid/uuid_test.go diff --git a/.gitignore b/.gitignore index 99312ce8..ce6eb99f 100644 --- a/.gitignore +++ b/.gitignore @@ -5,5 +5,4 @@ .vscode *.log git.sh -gitv.sh -*_test.go \ No newline at end of file +gitv.sh \ No newline at end of file diff --git a/helper/uuid/uuid_test.go b/helper/uuid/uuid_test.go new file mode 100644 index 00000000..f89205b8 --- /dev/null +++ b/helper/uuid/uuid_test.go @@ -0,0 +1,13 @@ +package uuid_test + +import ( + "fmt" + "github.com/dtapps/go-library/helper/uuid" + "testing" +) + +func TestName(t *testing.T) { + genUUID := uuid.GenUUID() + fmt.Println("Hello World") + fmt.Println(genUUID) +}