Skip to content

Commit

Permalink
test: more tests for wvtt
Browse files Browse the repository at this point in the history
  • Loading branch information
tobbee committed Nov 9, 2024
1 parent d05a1c7 commit 0c311b1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions mp4/wvtt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,13 @@ func TestVtta(t *testing.T) {
vtta := &VttaBox{CueAdditionalText: "This is a comment"}
boxDiffAfterEncodeAndDecode(t, vtta)
}

func TestVlab(t *testing.T) {
vlab := &VlabBox{SourceLabel: "Swedish news"}
boxDiffAfterEncodeAndDecode(t, vlab)
}

func TestVttC(t *testing.T) {
vttC := &VttCBox{Config: "..."}
boxDiffAfterEncodeAndDecode(t, vttC)
}

0 comments on commit 0c311b1

Please sign in to comment.