mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
afe7e847d6
Again, entirely script based. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
17 lines
259 B
C++
17 lines
259 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef TESTMERGE_H
|
|
#define TESTMERGE_H
|
|
|
|
#include <QtTest>
|
|
|
|
class TestMerge : public QObject {
|
|
Q_OBJECT
|
|
private slots:
|
|
void initTestCase();
|
|
void cleanup();
|
|
|
|
void testMergeEmpty();
|
|
void testMergeBackwards();
|
|
};
|
|
|
|
#endif
|