mission_test.go 954 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package mission
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestMissionMissions(t *testing.T) {
  8. convey.Convey("Missions", t, func(ctx convey.C) {
  9. var (
  10. c = context.Background()
  11. )
  12. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  13. mm, err := d.Missions(c)
  14. ctx.Convey("Then err should be nil.mm should not be nil.", func(ctx convey.C) {
  15. ctx.So(err, convey.ShouldBeNil)
  16. ctx.So(mm, convey.ShouldNotBeNil)
  17. })
  18. })
  19. })
  20. }
  21. func TestMissionMissionOnlineByTid(t *testing.T) {
  22. convey.Convey("MissionOnlineByTid", t, func(ctx convey.C) {
  23. var (
  24. c = context.Background()
  25. tid = int16(0)
  26. )
  27. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  28. mm, err := d.MissionOnlineByTid(c, tid)
  29. ctx.Convey("Then err should be nil.mm should not be nil.", func(ctx convey.C) {
  30. ctx.So(err, convey.ShouldBeNil)
  31. ctx.So(mm, convey.ShouldNotBeNil)
  32. })
  33. })
  34. })
  35. }