mirror of
https://github.com/asticode/go-astiav.git
synced 2025-10-29 10:42:32 +08:00
13 lines
221 B
Go
13 lines
221 B
Go
package astiav
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestColorSpace(t *testing.T) {
|
|
require.Equal(t, "bt709", ColorSpaceBt709.Name())
|
|
require.Equal(t, "bt709", ColorSpaceBt709.String())
|
|
}
|