go-common/app/admin/main/videoup/dao/manager/reason_log_test.go
2019-04-22 18:49:16 +08:00

16 lines
328 B
Go

package manager
import (
"context"
"github.com/smartystreets/goconvey/convey"
"testing"
"time"
)
func Test_AddReasonLog(t *testing.T) {
convey.Convey("AddReasonLog", t, WithDao(func(d *Dao) {
_, err := d.AddReasonLog(context.TODO(), 0, 0, 0, 0, 0, 0, time.Now(), time.Now())
convey.So(err, convey.ShouldBeNil)
}))
}