public static void VerifyAllReturnPropertiesHasValues(SmartObject smartObject)
        {
            smartObject.ThrowIfNull("smartObject");

            var method = smartObject.GetMethod(smartObject.MethodToExecute);

            SmartObjectHelper.VerifyAllReturnPropertiesHasValues(method);
        }