2019-04-22 02:59:20 +00:00

17 lines
276 B
Go

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()
}