es_test.go 294 B

12345678910111213141516
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/admin/main/answer/model"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestHistoryES(t *testing.T) {
  9. Convey("HistoryES", t, func() {
  10. d.HistoryES(context.Background(), &model.ArgHistory{Mid: 14771787, Pn: 1, Ps: 1})
  11. })
  12. }