bilibili-backup/app/service/openplatform/anti-fraud/dao/dao_test.go

18 lines
231 B
Go
Raw Normal View History

2019-04-22 10:59:20 +08:00
package dao
import (
"context"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
var d *Dao
func TestPing(t *testing.T) {
Convey("TestPing: ", t, func() {
err := d.Ping(context.TODO())
So(err, ShouldBeNil)
})
}