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