bilibili-backup/app/service/openplatform/anti-fraud/dao/dao_test.go
2019-04-22 02:59:20 +00:00

18 lines
231 B
Go

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)
})
}