income_test.go 592 B

1234567891011121314151617181920212223242526272829
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func Test_ArchiveIncome(t *testing.T) {
  8. var (
  9. mid = int64(1011)
  10. typ = 0
  11. page, size = 0, 10
  12. all = 0
  13. )
  14. Convey("ArchiveIncome", t, WithService(func(s *Service) {
  15. _, err := s.ArchiveIncome(context.Background(), mid, typ, page, size, all)
  16. So(err, ShouldBeNil)
  17. }))
  18. }
  19. func Test_UpSummary(t *testing.T) {
  20. Convey("UpSummary", t, WithService(func(s *Service) {
  21. var mid int64 = 1011
  22. _, err := s.UpSummary(context.Background(), mid)
  23. So(err, ShouldBeNil)
  24. }))
  25. }