bump version
[vng.git] / tests / configuration / TestConfiguration.h
blobd3426f1e4f2216afeebe88f6284129325bbec5a1
1 #ifndef TESTCURSOR_H
2 #define TESTCURSOR_H
4 #include <QObject>
5 #include <QtTest/QtTest>
7 class TestConfiguration : public QObject {
8 Q_OBJECT
9 public:
10 TestConfiguration();
12 private slots:
13 void testFindRepo();
14 void testReadBranchesConfig();
15 void init();
17 private:
18 QDir m_originalDir;
21 #endif