public void VerifyValueVisibilityOption(VisibilityOption option, string regTypeName, bool expValue)
        {
            bool actValue = this.GetValueVisibilityOption(option, regTypeName);
            string mssgFormat = "{0} checked = {1}";
            string expMssg = string.Format(mssgFormat, option.ToString(), expValue.ToString());
            string actMssg = string.Format(mssgFormat, option.ToString(), actValue.ToString());

            Assert.AreEqual(expMssg, actMssg);
        }