FRM
v1.4.2

frm
Script emos_frm_result_lib

CompiledModule
  |
  +--emos_frm_result_lib

Simple routines for calculating test statistics.

Tsl
emos_frm_result_lib.tsl

Function Summary
 String FRM_RES_add_test_statistics(in category)
          Increases the test statistics for the specified category by one.
 String FRM_RES_get_test_statistics(out[] arr)
          Returns the array containig test statistics.
 String FRM_RES_init_test_statistics()
          Initialises the array with test statistics (by cleaning it up).
 String FRM_RES_report_test_statistics()
          Produces the most simple report on test statistics using "report_msg()".
 

Function Detail

FRM_RES_init_test_statistics

public String FRM_RES_init_test_statistics()
Initialises the array with test statistics (by cleaning it up).


FRM_RES_get_test_statistics

public String FRM_RES_get_test_statistics(out[] arr)
Returns the array containig test statistics. The format of the array is not defined. It will usually contain only one dimension in form of array["category"] where "category" is defined via FRM_RES_add_test_statistics( in category ).

Returns:
array of test statistics.

FRM_RES_add_test_statistics

public String FRM_RES_add_test_statistics(in category)
Increases the test statistics for the specified category by one.

Parameters:
category - (in) name of the category

FRM_RES_report_test_statistics

public String FRM_RES_report_test_statistics()
Produces the most simple report on test statistics using "report_msg()". This function cummulates the total over all categories and reports the percentage for each category (i.e. it assumes the categories are non-overlapping). Overload this function with your own one to produce better report.


FRM
v1.4.2