mc_test.go 515 B

123456789101112131415161718192021222324252627282930
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. credit "go-common/app/interface/main/credit/model"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. // TestMcJury .
  9. func TestMcJury(t *testing.T) {
  10. var (
  11. c = context.TODO()
  12. op = &credit.Opinion{
  13. Mid: 1,
  14. OpID: 632,
  15. Content: "aaaaa",
  16. }
  17. )
  18. Convey("return someting", t, func() {
  19. d.AddOpinionCache(c, op)
  20. mop, miss, err := d.OpinionsCache(c, []int64{632, 631})
  21. So(err, ShouldBeNil)
  22. So(miss, ShouldNotBeNil)
  23. So(mop, ShouldNotBeNil)
  24. })
  25. }