{"ScriptPreparationCode":"var shortLength = 200;\r\nvar shortStr = new Array(300 \u002B 1).join(\u0027s\u0027);\r\nvar longLength = 2000;\r\nvar longStr = new Array(3000 \u002B 1).join(\u0027l\u0027);","TestCases":[{"Name":"substr","Code":"shortStr.substr(0, shortLength);\r\nlongStr.substr(0, longLength);","IsDeferred":false},{"Name":"substring","Code":"shortStr.substring(0, shortLength);\r\nlongStr.substring(0, longLength);","IsDeferred":false},{"Name":"slice","Code":"shortStr.slice(0, shortLength);\r\nlongStr.slice(0, longLength);","IsDeferred":false}]}