mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-07 20:13:24 +00:00
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
|