diff options
Diffstat (limited to 'golang/gen/restapi/test.go')
| -rw-r--r-- | golang/gen/restapi/test.go | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/golang/gen/restapi/test.go b/golang/gen/restapi/test.go new file mode 100644 index 00000000..f45b33c5 --- /dev/null +++ b/golang/gen/restapi/test.go @@ -0,0 +1,13 @@ + +package restapi + +import ( +  "testing" +  "github.com/stretchr/testify/assert" +) + +func TestSomething(t *testing.T) { + +  assert.True(t, true, "True is true!") + +} | 
