mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
15 lines
204 B
C
15 lines
204 B
C
|
#ifndef TESTMERGE_H
|
||
|
#define TESTMERGE_H
|
||
|
|
||
|
#include <QtTest>
|
||
|
|
||
|
class TestMerge : public QObject{
|
||
|
Q_OBJECT
|
||
|
private slots:
|
||
|
void initTestCase();
|
||
|
void testMergeEmpty();
|
||
|
void testMergeBackwards();
|
||
|
};
|
||
|
|
||
|
#endif
|