Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 439 Bytes

settingstest.h

File metadata and controls

28 lines (22 loc) · 439 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
/**
* @file settingstest.h
* @copyright 2013 Jolla Ltd.
* @author Martin Kampas <martin.kampas@tieto.com>
* @date 2013
*/
#ifndef _SETTINGSTEST_H
#define _SETTINGSTEST_H
#include <QObject>
Oct 10, 2016
Oct 10, 2016
13
14
class SettingsTest: public QObject
{
15
16
Q_OBJECT
Oct 10, 2016
Oct 10, 2016
17
private slots:
18
19
20
21
void initTestCase();
void cleanupTestCase();
void testMerge_data();
void testMerge();
Apr 2, 2013
Apr 2, 2013
22
23
void testUpgrade_data();
void testUpgrade();
Oct 10, 2016
Oct 10, 2016
25
private:
26
27
28
};
#endif