From 0c311b1704e5490a48b7c91ccc4be6461ffea8fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbjo=CC=88rn=20Einarsson?= Date: Sat, 9 Nov 2024 09:47:34 +0100 Subject: [PATCH] test: more tests for wvtt --- mp4/wvtt_test.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/mp4/wvtt_test.go b/mp4/wvtt_test.go index 5333ff39..c34a602f 100644 --- a/mp4/wvtt_test.go +++ b/mp4/wvtt_test.go @@ -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) +}