Various fixes and additions to logger system.
This commit is contained in:
parent
ac07ad67d9
commit
94c6ae4eab
9 changed files with 266 additions and 104 deletions
25
test/test-automation/xml_logger.h
Normal file
25
test/test-automation/xml_logger.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
#ifndef _XML_LOGGER_H
|
||||
#define _XML_LOGGER_H
|
||||
|
||||
#include "logger.h"
|
||||
|
||||
void XMLRunStarted(LogOutputFp outputFn, const char *runnerParameters, time_t eventTime);
|
||||
|
||||
void XMLRunEnded(time_t endTime, time_t totalRuntime);
|
||||
|
||||
void XMLSuiteStarted(const char *suiteName, time_t eventTime);
|
||||
|
||||
void XMLSuiteEnded(int testsPassed, int testsFailed, int testsSkipped,
|
||||
double endTime, time_t totalRuntime);
|
||||
|
||||
void XMLTestStarted(const char *testName, const char *testDescription, time_t startTime);
|
||||
|
||||
void XMLTestEnded(const char *testName, const char *testDescription,
|
||||
int testResult, int numAsserts, time_t endTime, time_t totalRuntime);
|
||||
|
||||
void XMLAssert(const char *assertName, int assertResult, const char *assertMessage,
|
||||
time_t eventTime);
|
||||
|
||||
void XMLLog(const char *logMessage, time_t eventTime);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue