mango_recom_test.go 776 B

1234567891011121314151617181920212223242526272829303132333435
  1. package thirdp
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestThirdpMangoOrder(t *testing.T) {
  8. var (
  9. c = context.Background()
  10. )
  11. convey.Convey("MangoOrder", t, func(ctx convey.C) {
  12. s, err := d.MangoOrder(c)
  13. ctx.Convey("Then err should be nil.s should not be nil.", func(ctx convey.C) {
  14. ctx.So(err, convey.ShouldBeNil)
  15. ctx.So(s, convey.ShouldNotBeNil)
  16. })
  17. })
  18. }
  19. func TestThirdpMangoRecom(t *testing.T) {
  20. var (
  21. c = context.Background()
  22. ids = []int64{}
  23. )
  24. convey.Convey("MangoRecom", t, func(ctx convey.C) {
  25. data, err := d.MangoRecom(c, ids)
  26. ctx.Convey("Then err should be nil.data should not be nil.", func(ctx convey.C) {
  27. ctx.So(err, convey.ShouldBeNil)
  28. ctx.So(data, convey.ShouldNotBeNil)
  29. })
  30. })
  31. }