protocol_test.go 549 B

1234567891011121314151617181920212223242526
  1. package like
  2. import (
  3. "context"
  4. "testing"
  5. "fmt"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestRawActSubjectProtocol(t *testing.T) {
  9. convey.Convey("RawLikeMissionBuff", t, func(ctx convey.C) {
  10. var (
  11. c = context.Background()
  12. sid = int64(10350)
  13. )
  14. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  15. res, err := d.RawActSubjectProtocol(c, sid)
  16. ctx.Convey("Then err should be nil.ID should not be nil.", func(ctx convey.C) {
  17. ctx.So(err, convey.ShouldBeNil)
  18. fmt.Printf("%v", res)
  19. })
  20. })
  21. })
  22. }