SDL-mirror/test/test-automation/plain_logger.h
2011-06-21 22:04:44 +03:00

25 lines
833 B
C

#ifndef _PLAIN_LOGGER_H
#define _PLAIN_LOGGER_H
#include "logger.h"
void PlainRunStarted(LogOutputFp outputFn, const char *runnerParameters, time_t eventTime);
void PlainRunEnded(time_t endTime, time_t totalRuntime);
void PlainSuiteStarted(const char *suiteName, time_t eventTime);
void PlainSuiteEnded(int testsPassed, int testsFailed, int testsSkipped,
double endTime, time_t totalRuntime);
void PlainTestStarted(const char *testName, const char *testDescription, time_t startTime);
void PlainTestEnded(const char *testName, const char *testDescription,
int testResult, int numAsserts, time_t endTime, time_t totalRuntime);
void PlainAssert(const char *assertName, int assertResult, const char *assertMessage,
time_t eventTime);
void PlainLog(const char *logMessage, time_t eventTime);
#endif