bilibili-backup/app/service/main/vip/dao/dialog_test.go
2019-04-22 02:59:20 +00:00

16 lines
253 B
Go

package dao
import (
"context"
"testing"
"github.com/smartystreets/goconvey/convey"
)
func TestDaoDialogAll(t *testing.T) {
convey.Convey("DialogAll", t, func() {
_, err := d.DialogAll(context.TODO())
convey.So(err, convey.ShouldBeNil)
})
}