Added time, date and total runtime information to the output by
logging system.
This commit is contained in:
parent
7236f2ab89
commit
fd3b97e2ff
7 changed files with 127 additions and 49 deletions
|
@ -6,23 +6,22 @@
|
|||
void XMLRunStarted(int parameterCount, char *runnerParameters[], time_t eventTime);
|
||||
|
||||
void XMLRunEnded(int testCount, int suiteCount, int testPassCount, int testFailCount,
|
||||
time_t endTime, time_t totalRuntime);
|
||||
time_t endTime, double totalRuntime);
|
||||
|
||||
void XMLSuiteStarted(const char *suiteName, time_t eventTime);
|
||||
|
||||
void XMLSuiteEnded(int testsPassed, int testsFailed, int testsSkipped,
|
||||
double endTime, time_t totalRuntime);
|
||||
time_t endTime, double totalRuntime);
|
||||
|
||||
void XMLTestStarted(const char *testName, const char *suiteName, const char *testDescription, time_t startTime);
|
||||
|
||||
void XMLTestEnded(const char *testName, const char *suiteName,
|
||||
int testResult, time_t endTime, time_t totalRuntime);
|
||||
int testResult, time_t endTime, double totalRuntime);
|
||||
|
||||
void XMLAssert(const char *assertName, int assertResult, const char *assertMessage,
|
||||
time_t eventTime);
|
||||
|
||||
void XMLAssertSummary(int numAsserts, int numAssertsFailed, int numAssertsPass);
|
||||
|
||||
void XMLAssertSummary(int numAsserts, int numAssertsFailed, int numAssertsPass, time_t eventTime);
|
||||
|
||||
void XMLLog(const char *logMessage, time_t eventTime);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue