video_track_test.go 288 B

123456789101112131415
  1. package archive
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func Test_AddVideoTrack(t *testing.T) {
  8. Convey("AddVideoTrack", t, func() {
  9. _, err := d.AddVideoTrack(context.TODO(), 1, "Test_InVideoHis", 0, 0, "", "", "")
  10. So(err, ShouldBeNil)
  11. })
  12. }