user_info_test.go 488 B

12345678910111213141516171819202122
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestServiceCheckBirthday(t *testing.T) {
  8. convey.Convey("CheckBirthday", t, func() {
  9. ok := s.CheckBirthday(context.Background(), 0)
  10. convey.So(ok, convey.ShouldNotBeNil)
  11. })
  12. }
  13. func TestServiceaccInfo(t *testing.T) {
  14. convey.Convey("accInfo", t, func() {
  15. ai, err := s.accInfo(context.Background(), 0)
  16. convey.So(err, convey.ShouldBeNil)
  17. convey.So(ai, convey.ShouldNotBeNil)
  18. })
  19. }