Grantlee 0.2.0
|
00001 #ifndef _TEST_COVERAGE_OBJECT_H 00002 #define _TEST_COVERAGE_OBJECT_H 00003 #include <QObject> 00004 class CoverageObject : public QObject 00005 { 00006 Q_OBJECT 00007 public: 00008 CoverageObject(QObject *p=NULL) : QObject(p) {} 00009 virtual void initTest() {} 00010 virtual void cleanupTest() {} 00011 protected Q_SLOTS: 00012 void init() ; 00013 void cleanup(); 00014 }; 00015 #endif