FactDev  0.1
pointerstest.h
1 #ifndef POINTERSTEST_H
2 #define POINTERSTEST_H
3 #include <QObject>
4 
5 #include "QTestRunner/testrunner.h"
6 #include "utils/pointers.h"
7 
8 class PointersTest : public QObject
9 {
10 Q_OBJECT
11 private slots:
12  void deleteIfNotNullTest();
13 };
14 
15 DECLARE_TEST(PointersTest)
16 #endif // POINTERSTEST_H
Definition: pointerstest.h:8