Esempio n. 1
0
        public static void Rgb_GivenValidColor_ReturnsObjectWithForegroundSet()
        {
            var expectedColor = new Rgb(12, 34, 56);

            var text = Fabulous.Rgb(12, 34, 56);

            Assert.AreEqual(expectedColor, text.ForegroundColor);
        }