Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 503 Bytes

rndssuclitest.h

File metadata and controls

30 lines (23 loc) · 503 Bytes
 
Apr 3, 2013
Apr 3, 2013
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* @file rndssuclitest.h
* @copyright 2013 Jolla Ltd.
* @author Martin Kampas <martin.kampas@tieto.com>
* @date 2013
*/
#ifndef _RNDSSUCLITEST_H
#define _RNDSSUCLITEST_H
#include <QObject>
class RndSsuCliTest: public QObject {
Q_OBJECT
private slots:
void initTestCase();
void cleanupTestCase();
void init();
void cleanup();
void testSubcommandFlavour();
void testSubcommandRelease();
void testSubcommandMode();
private:
QString tempDir;
};
#endif