RabbitCommon v2.2.6
Loading...
Searching...
No Matches
UnitTests.h
1#ifndef CUNITTESTS_H
2#define CUNITTESTS_H
3
4#include <QObject>
5
6class CUnitTests : public QObject
7{
8 Q_OBJECT
9public:
10 explicit CUnitTests(QObject *parent = nullptr);
11
12private Q_SLOTS:
13 void initTestCase();
14 void initTestCase_data();
15 void cleanupTestCase();
16 void init();
17 void cleanup();
18
19 void testDownloadFileNoExistLocalFile();
20 void testDownloadFileExistLocalFile();
21
22 void testCFrmUpdaterCompareVersion();
23
24 void test_os();
25 void test_architecture();
26 void test_joson();
27
28 void test_redirect_json_file();
29};
30
31#endif // CUNITTESTS_H