public void ReverseUtils_ConvertStringToBooleanON4()
        {
            string stringValue = null;
            bool?  result      = ReverseUtils.ConvertStringToBooleanON(stringValue);

            Assert.AreEqual(null, result);
        }
        public void ReverseUtils_ConvertStringToBooleanON3()
        {
            string stringValue = "O";
            bool?  result      = ReverseUtils.ConvertStringToBooleanON(stringValue);

            Assert.IsNotNull(result);
            Assert.AreEqual(true, result.Value);
        }