Exemple #1
0
        public void CalculateSaturation_GivenRGBValues_ReturnsExpected(byte r, byte g, byte b, float expected)
        {
            var actual = _helper.CalculateSaturation(r, g, b);

            Assert.AreEqual(expected, actual, TOLERANCE);
        }