mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
cb112f9ac5
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
15 lines
202 B
C++
15 lines
202 B
C++
#ifndef TESTRENUMBER_H
|
|
#define TESTRENUMBER_H
|
|
|
|
#include <QtTest>
|
|
|
|
class TestRenumber : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void setup();
|
|
void testMerge();
|
|
void testMergeAndAppend();
|
|
};
|
|
|
|
#endif
|