I want to get rid of the decimal portion of the Execution Time that prints on my test report. At a minimum, I want it to display only one significant digit. Below is the expression that is found in the reportgen_txt.seq for the
f(x)Add Execution Time. What I'm wondering is, 1) how do I modify the format, 2)In general, how do I find out what is allowable in this expression.
Locals.Header += Str(ResStr("MODEL", "RPT_HEADER_EXEC_TIME"), "%-30s") + (PropertyExists("Parameters.MainSequenceResults.TS.TotalTime") ? Str(Parameters.MainSequenceResults.TS.TotalTime, Parameters.ReportOptions.NumericFormat , 1, True) + ResStr("MODEL", "RPT_HEADER_SECONDS") : ResStr("MODEL", "RPT_NOT_APPLICABLE")) + "\n"