bilibili-backup/app/service/main/vip/dao/dialog_test.go

16 lines
253 B
Go
Raw Normal View History

2019-04-22 10:59:20 +08:00
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)
})
}