Don't show bisect branches in 'vng branch'
[vng.git] / tests / cursor / TestCursor.h
blobd8feb26f4e6b8aa3e60aacbf1d05e45e4fb013df
1 #ifndef TESTCURSOR_H
2 #define TESTCURSOR_H
4 #include <QObject>
5 #include <QtTest/QtTest>
6 #include "hunks/ChangeSet.h"
8 class TestCursor : public QObject {
9 Q_OBJECT
10 public:
11 TestCursor() {}
13 private slots:
14 void testBasis();
15 void testForward1();
16 void testForward2();
17 void testBackwards();
18 void testPartialSelection();
20 private:
21 ChangeSet createChangeSet();
24 #endif