go-common/app/job/main/videoup-report/service/video_test.go

17 lines
276 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package service
import (
"go-common/app/job/main/videoup-report/conf"
"testing"
)
// TestHdlTraffic Test calculate video check spend time function.
func TestHdlTraffic(t *testing.T) {
err := conf.Init()
if err != nil {
return
}
s := New(conf.Conf)
s.hdlTraffic()
}