#include <AceUnitLogging.h>
Data Fields | |
void(* | runnerStarted )(void) |
Informs this logger that the runner has started running. | |
void(* | suiteStarted )(SuiteId_t const suiteId) |
Informs this logger that the runner has started a suite. | |
void(* | fixtureStarted )(const FixtureId_t fixture) |
Informs this logger that the runner has started a fixture. | |
void(* | testCaseStarted )(TestCaseId_t testCase) |
Informs this logger that the runner starts a test case. | |
void(* | testCaseFailed )(const AssertionError_t *error) |
Informs this logger that the runner failed a test case. | |
void(* | testCaseEnded )(TestCaseId_t testCase) |
Informs this logger that the runner ended a test case. | |
void(* | fixtureEnded )(FixtureId_t fixture) |
Informs this logger that the runner has ended a fixture. | |
void(* | suiteEnded )(SuiteId_t const suiteId) |
Informs this logger that the runner has ended a suite. | |
void(* | runnerEnded )(void) |
Informs this logger that the runner is about to end. |
void(* TestLogger_t::runnerStarted)(void) |
Informs this logger that the runner has started running.
Maybe NULL in case this logger does not implement this function.
void(* TestLogger_t::suiteStarted)(SuiteId_t const suiteId) |
Informs this logger that the runner has started a suite.
Maybe NULL in case this logger does not implement this function.
void(* TestLogger_t::fixtureStarted)(const FixtureId_t fixture) |
Informs this logger that the runner has started a fixture.
Maybe NULL in case this logger does not implement this function.
fixture | Fixture that was started. |
void(* TestLogger_t::testCaseStarted)(TestCaseId_t testCase) |
Informs this logger that the runner starts a test case.
Maybe NULL in case this logger does not implement this function.
testCase | Test case that was started. |
void(* TestLogger_t::testCaseFailed)(const AssertionError_t *error) |
Informs this logger that the runner failed a test case.
Maybe NULL in case this logger does not implement this function.
error | Assertion error with error information. |
void(* TestLogger_t::testCaseEnded)(TestCaseId_t testCase) |
Informs this logger that the runner ended a test case.
This will be invoked for failed test cases as well as for successful test cases. Maybe NULL in case this logger does not implement this function.
testCase | Test case that was ended. |
void(* TestLogger_t::fixtureEnded)(FixtureId_t fixture) |
Informs this logger that the runner has ended a fixture.
Maybe NULL in case this logger does not implement this function.
fixture | Fixture that was ended. |
void(* TestLogger_t::suiteEnded)(SuiteId_t const suiteId) |
Informs this logger that the runner has ended a suite.
Maybe NULL in case this logger does not implement this function.
void(* TestLogger_t::runnerEnded)(void) |
Informs this logger that the runner is about to end.
Maybe NULL in case this logger does not implement this function.