mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-12 13:26:16 +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
|