You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
352 B

package service
import (
. "github.com/smartystreets/goconvey/convey"
"go-common/app/job/main/videoup-report/model/archive"
"testing"
)
func TestService_HdlExcitation(t *testing.T) {
Convey("HdlExcitation", t, func() {
n := &archive.Archive{
ID: 17191032,
Mid: 27515256,
}
err := s.hdlExcitation(n, nil)
So(err, ShouldBeNil)
})
}