From 2f8d3fd0e53fc7235837eee9403d5f5810884730 Mon Sep 17 00:00:00 2001 From: Junwei Zhao Date: Fri, 14 Feb 2020 14:46:31 +1100 Subject: [PATCH] first commit --- go.mod | 5 +++++ go.sum | 10 ++++++++++ spike/a.go | 5 +++++ spike/a_test.go | 18 ++++++++++++++++++ 4 files changed, 38 insertions(+) create mode 100644 go.mod create mode 100644 go.sum create mode 100644 spike/a.go create mode 100644 spike/a_test.go diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..a249bec --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module toozhao.com/spike + +go 1.13 + +require github.com/stretchr/testify v1.4.0 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..e863f51 --- /dev/null +++ b/go.sum @@ -0,0 +1,10 @@ +github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk= +github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/spike/a.go b/spike/a.go new file mode 100644 index 0000000..d11a4f5 --- /dev/null +++ b/spike/a.go @@ -0,0 +1,5 @@ +package spike + +func hello() string { + return "hello" +} diff --git a/spike/a_test.go b/spike/a_test.go new file mode 100644 index 0000000..5e38966 --- /dev/null +++ b/spike/a_test.go @@ -0,0 +1,18 @@ +package spike + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func A_Test(t *testing.T) { + a := "he2llo" + if a != hello() { + t.Errorf("a %v is not what we expected %v ", a, "hello") + } +} + +func Test(t *testing.T) { + assert.Nil(t, 123, "It Should not be nil") +}