26 lines
371 B
C
26 lines
371 B
C
|
#ifndef JHW_TEST_PAGE
|
||
|
#define JHW_TEST_PAGE
|
||
|
|
||
|
#include <QtTest/QtTest>
|
||
|
#include <iostream>
|
||
|
#include <sstream>
|
||
|
#include <string>
|
||
|
|
||
|
#include "ConsoleOutput.h"
|
||
|
|
||
|
namespace HeadlessSpecRunner {
|
||
|
class ConsoleOutputTest : public QObject {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
ConsoleOutputTest();
|
||
|
|
||
|
private slots:
|
||
|
void testPassed();
|
||
|
void testFailed();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|