Ejemplo n.º 1
0
        public void GetResolutionText_Valid(int?width, int?height, bool interlaced, string expected)
        {
            var mediaStream = new MediaStream()
            {
                Width        = width,
                Height       = height,
                IsInterlaced = interlaced
            };

            Assert.Equal(expected, mediaStream.GetResolutionText());
        }