{"ScriptPreparationCode":null,"TestCases":[{"Name":"2-tier","Code":"const data = {a: 1, b: 2, c:\u0022some string\u0022, d: \u0022some other string\u0022, e: 5.21, f: \u0022The longest string ever for sure, but not quite\u0022}\r\nconst getData = () =\u003E { data.somethingElse = \u0022yayyyy\u0022; return data }\r\nconst getFromDao = () =\u003E getData()\r\nconst getFromController = () =\u003E getFromDao()\r\ngetFromController()","IsDeferred":false},{"Name":"3-tier","Code":"const data = {a: 1, b: 2, c:\u0022some string\u0022, d: \u0022some other string\u0022, e: 5.21, f: \u0022The longest string ever for sure, but not quite\u0022}\r\nconst getData = () =\u003E data\r\nconst getFromDao = () =\u003E getData()\r\nconst getFromService = () =\u003E { const data = getFromDao(); data.somethingElse = \u0022yayyy\u0022; return data }\r\nconst getFromController = () =\u003E getFromService()\r\ngetFromController()","IsDeferred":false}]}