mirror of
https://github.com/thead-yocto-mirror/xtensa_dsp
synced 2026-07-09 09:54:55 +02:00
29 lines
769 B
C++
29 lines
769 B
C++
#ifndef D_TeamCityTestOutput_h
|
|
#define D_TeamCityTestOutput_h
|
|
|
|
#include "TestOutput.h"
|
|
#include "SimpleString.h"
|
|
|
|
class TeamCityTestOutput: public ConsoleTestOutput
|
|
{
|
|
public:
|
|
TeamCityTestOutput(void);
|
|
virtual ~TeamCityTestOutput(void) _destructor_override;
|
|
|
|
virtual void printCurrentTestStarted(const UtestShell& test) _override;
|
|
virtual void printCurrentTestEnded(const TestResult& res) _override;
|
|
virtual void printCurrentGroupStarted(const UtestShell& test) _override;
|
|
virtual void printCurrentGroupEnded(const TestResult& res) _override;
|
|
|
|
virtual void printFailure(const TestFailure& failure) _override;
|
|
|
|
protected:
|
|
|
|
private:
|
|
void printEscaped(const char* s);
|
|
const UtestShell *currtest_;
|
|
SimpleString currGroup_;
|
|
};
|
|
|
|
#endif
|