excitation_test.go 352 B

123456789101112131415161718
  1. package service
  2. import (
  3. . "github.com/smartystreets/goconvey/convey"
  4. "go-common/app/job/main/videoup-report/model/archive"
  5. "testing"
  6. )
  7. func TestService_HdlExcitation(t *testing.T) {
  8. Convey("HdlExcitation", t, func() {
  9. n := &archive.Archive{
  10. ID: 17191032,
  11. Mid: 27515256,
  12. }
  13. err := s.hdlExcitation(n, nil)
  14. So(err, ShouldBeNil)
  15. })
  16. }