31 lines
435 B
C++
31 lines
435 B
C++
#ifndef MAINTEST_H
|
|
#define MAINTEST_H
|
|
|
|
#include <QtCore/QObject>
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#include <QUuid>
|
|
|
|
#include "testdatabase.h"
|
|
class Test;
|
|
class UuidTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
TestDatabase db;
|
|
QUuid uuid;
|
|
|
|
public:
|
|
explicit UuidTest(QObject *parent = nullptr);
|
|
|
|
signals:
|
|
|
|
private slots:
|
|
void initTestCase();
|
|
void save();
|
|
void restore();
|
|
|
|
void cleanupTestCase();
|
|
};
|
|
|
|
#endif // MAINTEST_H
|