{"ScriptPreparationCode":null,"TestCases":[{"Name":"test one","Code":"function printFloatFormato0( value, precisione) { // formato 1,234.56 / F\u00B0\r\n return Number.parseFloat(value).toFixed( precisione).toString();\r\n}\r\n\r\nprintFloatFormato0(10.55, 1);","IsDeferred":false},{"Name":"test two","Code":"function printFloatFormato1( value, precisione) { // formato 1.234,56 / C\u00B0\r\n return Number.parseFloat(value).toFixed( precisione).toString().replace(\u0027.\u0027,\u0027,\u0027);\r\n}\r\n\r\nprintFloatFormato1(10.55, 1);","IsDeferred":false}]}