public void ShouldReturnOneStyleWhenComplexStyleValuesHasTwoDefinitions()
        {
            var complexStyleValue = new ComplexCssStyleValue(new ICssStyleValue[] {
                NumberCssStyleValue.CreatePixelValue(10), TextCssStyleValue.CreateTextValue("dotted")
            });

            Assert.Equal("10px dotted", complexStyleValue.CssRepresentation());
        }