public void NullUtils_GetNullOrBoolean_Value_Success()
        {
            bool?value = true;

            Assert.IsTrue((bool)NullUtils.GetNullOrBoolean(value), "GetNullOrBoolean(value) should have returned true");
        }
        public void NullUtils_GetNullOrBoolean_Null_Success()
        {
            bool?value = null;

            Assert.IsNull(NullUtils.GetNullOrBoolean(value), "GetNullOrBoolean(null) should have returned null");
        }