jasmine-headless-webkit/ext/jasmine-webkit-specrunner/HeadlessSpecRunner/ConsoleOutput.h

15 lines
289 B
C
Raw Normal View History

2011-08-02 14:20:18 +00:00
#ifndef JHW_CONSOLE_REPORTER
#define JHW_CONSOLE_REPORTER
namespace HeadlessSpecRunner {
class ConsoleReporter : public QObject {
Q_OBJECT
public:
ConsoleReporter();
void passed(const QString &specDetail);
void failed(const QString &specDetail);
}
}
#endif