video_test.go 276 B

12345678910111213141516
  1. package service
  2. import (
  3. "go-common/app/job/main/videoup-report/conf"
  4. "testing"
  5. )
  6. // TestHdlTraffic Test calculate video check spend time function.
  7. func TestHdlTraffic(t *testing.T) {
  8. err := conf.Init()
  9. if err != nil {
  10. return
  11. }
  12. s := New(conf.Conf)
  13. s.hdlTraffic()
  14. }