container/flv/flv_test.go: commented test functions

This commit is contained in:
Saxon 2019-05-08 15:41:19 +09:30
parent 553ba8dc54
commit 4f2d2f7c26
1 changed files with 4 additions and 0 deletions

View File

@ -32,6 +32,8 @@ import (
"testing" "testing"
) )
// TestVideoTagBytes checks that we can correctly get a []byte representation
// of a VideoTag using VideoTag.Bytes().
func TestVideoTagBytes(t *testing.T) { func TestVideoTagBytes(t *testing.T) {
tests := []struct { tests := []struct {
tag VideoTag tag VideoTag
@ -72,6 +74,8 @@ func TestVideoTagBytes(t *testing.T) {
} }
} }
// TestAudioTagBytes checks that we can correctly get a []byte representation of
// an AudioTag using AudioTag.Bytes().
func TestAudioTagBytes(t *testing.T) { func TestAudioTagBytes(t *testing.T) {
tests := []struct { tests := []struct {
tag AudioTag tag AudioTag