GatherTestCase

A simple class to gather reported test cases.

Members

Functions

failedAsArray
TestCase[] failedAsArray()
Undocumented in source. Be warned that the author may not have intended to support it.
foundAsArray
TestCase[] foundAsArray()
Undocumented in source. Be warned that the author may not have intended to support it.
merge
void merge(GatherTestCase o)
Undocumented in source. Be warned that the author may not have intended to support it.
reportFailed
void reportFailed(TestCase tc)
Undocumented in source. Be warned that the author may not have intended to support it.
reportFound
void reportFound(TestCase tc)

A test case that is found

reportUnstable
void reportUnstable(TestCase tc)
Undocumented in source. Be warned that the author may not have intended to support it.
unstableAsArray
TestCase[] unstableAsArray()
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

failed
long[TestCase] failed;

Test cases reported as failed.

found
Set!TestCase found;

Found test cases.

unstable
Set!TestCase unstable;

The unstable test cases.

Inherited Members

From TestCaseReport

reportFailed
void reportFailed(TestCase tc)

A test case that failed.

reportFound
void reportFound(TestCase tc)

A test case that is found

reportUnstable
void reportUnstable(TestCase tc)

One or more test cases are unstable.

Meta