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.
20 lines
349 B
20 lines
349 B
package service |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
) |
|
|
|
func TestVideoDuration(t *testing.T) { |
|
var ( |
|
aid int64 = 10097265 |
|
oid int64 = 1508 |
|
c = context.TODO() |
|
) |
|
d, err := svr.videoDuration(c, aid, oid) |
|
if err != nil { |
|
t.Errorf("s.videoDuration(%d %d) error(%v)", aid, oid, err) |
|
t.FailNow() |
|
} |
|
t.Logf("oid:%d duration:%d", oid, d) |
|
}
|
|
|