summaryrefslogtreecommitdiffstats
path: root/tests/testmerge.h
blob: 771afc4db57aa9234ba2dbbe12cc2374af20a163 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef TESTMERGE_H
#define TESTMERGE_H

#include <QtTest>

class TestMerge : public QObject{
	Q_OBJECT
private slots:
	void initTestCase();
	void testMergeEmpty();
	void testMergeBackwards();
};

#endif