You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
309 B

package service
import (
"context"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func TestService(t *testing.T) {
Convey("service", t, func() {
t.Log("service test")
})
}
func TestPing(t *testing.T) {
Convey("ping", t, func() {
var s = &Service{}
s.Ping(context.Background())
})
}