{"ScriptPreparationCode":"var response = {\r\n data: {\r\n property: \u0022value\u0022,\r\n },\r\n};","TestCases":[{"Name":"Arg Guard","Code":"function argGuard(resp) {\r\n return resp \u0026\u0026 resp.data \u0026\u0026 resp.data.property;\r\n}\r\nargGuard(response);","IsDeferred":false},{"Name":"Global Guard","Code":"function globalGuard() {\r\n return response \u0026\u0026 response.data \u0026\u0026 response.data.property;\r\n}\r\nglobalGuard();","IsDeferred":false},{"Name":"Global Direct ","Code":"function globalDirect() {\r\n return response.data.property;\r\n}\r\nglobalDirect();","IsDeferred":false},{"Name":"Arg Direct","Code":"function argDirect(resp) {\r\n return resp.data.property;\r\n}\r\nargDirect(response);","IsDeferred":false}]}