go-common/app/job/main/videoup-report/dao/data/admin_test.go

15 lines
247 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package data
import (
"context"
. "github.com/smartystreets/goconvey/convey"
"testing"
)
func TestDao_MonitorNotify(t *testing.T) {
Convey("MonitorNotify", t, func() {
_, err := d.MonitorNotify(context.TODO())
So(err, ShouldBeNil)
})
}