mask_test.go 411 B

1234567891011121314151617181920212223
  1. package client
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/interface/main/dm2/model"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestMask(t *testing.T) {
  9. var (
  10. cid int64 = 632
  11. )
  12. Convey("test mask", t, func() {
  13. arg := &model.ArgMask{Cid: cid, Plat: 0}
  14. res, err := svr.Mask(context.TODO(), arg)
  15. So(err, ShouldBeNil)
  16. So(res, ShouldNotBeEmpty)
  17. t.Logf("===============%+v", res)
  18. })
  19. }