StatsReporter

The stats reporter creates a csv file with the duration and the result of all your steps and tests. It's usefull to use it with other reporters, like spec progress.

Constructors

this
this(StatStorage storage, string destination)
Undocumented in source.
this
this(string destination)
Undocumented in source.

Members

Functions

begin
void begin(SuiteResult suite)
Undocumented in source. Be warned that the author may not have intended to support it.
begin
void begin(string suite, TestResult test)
Undocumented in source. Be warned that the author may not have intended to support it.
begin
void begin(string suite, string test, StepResult step)
Undocumented in source. Be warned that the author may not have intended to support it.
begin
void begin(ulong )
Undocumented in source. Be warned that the author may not have intended to support it.
end
void end(SuiteResult suite)
Undocumented in source. Be warned that the author may not have intended to support it.
end
void end(string suite, TestResult test)
Undocumented in source. Be warned that the author may not have intended to support it.
end
void end(string suite, string test, StepResult step)
Undocumented in source. Be warned that the author may not have intended to support it.
end
void end(SuiteResult[] )
Undocumented in source. Be warned that the author may not have intended to support it.
update
void update()
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From ILifecycleListener

begin
void begin(ulong testCount)

This method is trigered when before the test start

update
void update()

This method is triggered when you can perform some updates. The frequency varries by the test executor that you choose

end
void end(SuiteResult[] )

This method is trigered when your tests are ended

From ITestCaseLifecycleListener

begin
void begin(string suite, TestResult )

Called before a test execution

end
void end(string suite, TestResult )
Undocumented in source.

From ISuiteLifecycleListener

begin
void begin(SuiteResult )

Called before a suite execution

end
void end(SuiteResult )

Called after a suite execution

From IStepLifecycleListener

begin
void begin(string suite, string test, StepResult )

Called before a step begins

end
void end(string suite, string test, StepResult )

Called after a step ended

Meta