~diegosarmentero/clickmanager-plugin/x-click-token-support

« back to all changes in this revision

Viewing changes to tests/testclickmanager.h

  • Committer: Diego Sarmentero
  • Date: 2013-09-10 19:01:19 UTC
  • Revision ID: diego.sarmentero@gmail.com-20130910190119-5zlm3s38txxpzipg
adding files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef TESTCLICKMANAGER_H
 
2
#define TESTCLICKMANAGER_H
 
3
 
 
4
#include <QObject>
 
5
 
 
6
#include <QtTest/QtTest>
 
7
 
 
8
class TestClickManager : public QObject
 
9
{
 
10
    Q_OBJECT
 
11
 
 
12
public slots:
 
13
    void slotModelChanged();
 
14
 
 
15
private slots:
 
16
    void cleanup();
 
17
 
 
18
    void testCheckUpdates();
 
19
    void testStartDownload();
 
20
 
 
21
private:
 
22
    int m_signal_counter;
 
23
};
 
24
 
 
25
#endif // TESTCLICKMANAGER_H