FactDev  0.1
stringtest.h
1 #ifndef STRINGTEST_H
2 #define STRINGTEST_H
3 #include <QObject>
4 
5 #include "QTestRunner/testrunner.h"
6 #include "utils/string.h"
7 
8 class StringTest : public QObject
9 {
10  Q_OBJECT
11 public:
12  StringTest();
13 private slots:
14  void firstLetterToUpperTest(void);
15  void getExtensionFile();
16 };
17 
18 DECLARE_TEST(StringTest)
19 
20 #endif // STRINGTEST_H
Definition: stringtest.h:8