Alloy UI

test  1.0.1

 
Filters

Class Test.Reporter

An object capable of sending test results to a server.

Constructor

Test.Reporter ( url , format )
Parameters:
url <String> The URL to submit the results to.
format <Function> (Optiona) A function that outputs the results in a specific format. Default is Y.Test.Format.XML.

Properties

format - Function

The formatting function to call when submitting the data.

url - String

The URL to submit the data to.

Methods

addField

Void addField ( name , value )
Adds a field to the form that submits the results.
Parameters:
name <String> The name of the field.
value <Variant> The value of the field.

destroy

Void destroy ( )
Cleans up the memory associated with the TestReporter, removing DOM elements that were created.

report

Void report ( results )
Sends the report to the server.
Parameters:
results <Object> The results object created by TestRunner.