Tests.ColorVariableProperties.Value C# (CSharp) Method

Value() private method

private Value ( ) : void
return void
        public void Value()
        {
            Variable.R = 0.5f;
            Variable.G = 0.3f;
            Variable.B = 0.1f;
            Assert.AreEqual(0.5f, Variable.R);
            Assert.AreEqual(0.3f, Variable.G);
            Assert.AreEqual(0.1f, Variable.B);
        }
ColorVariableProperties