app_test.go 169 B

12345678910111213
  1. package service
  2. import (
  3. "testing"
  4. . "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestApp(t *testing.T) {
  7. Convey("app", t, func() {
  8. t.Log("app test")
  9. })
  10. }