ssu
Loading...
Searching...
No Matches
ssuclitest.h
Go to the documentation of this file.
1
7
8#ifndef _SSUCLITEST_H
9#define _SSUCLITEST_H
10
11#include <QObject>
12
13class QProcess;
14
15class Sandbox;
16
17class SsuCliTest: public QObject
18{
19 Q_OBJECT
20
21public:
22 SsuCliTest(): m_sandbox(0) {}
23
24private slots:
25 void init();
26 void cleanup();
27
28 void testSubcommandFlavour();
29 void testSubcommandRelease();
30 void testSubcommandMode();
31
32private:
33 Sandbox *m_sandbox;
34 QProcess *m_bus;
35 QProcess *m_ssud;
36};
37
38#endif
Helps to redirect file operations into sandbox directory.
Definition sandbox_p.h:22