Nut/tests/auto/tst_join/jointest.h

27 lines
362 B
C
Raw Normal View History

2018-01-14 22:03:24 +08:00
#ifndef JOINTEST_H
#define JOINTEST_H
#include <QtCore/QObject>
#include <QtCore/qglobal.h>
#include "weblogdatabase.h"
class JoinTest : public QObject
{
Q_OBJECT
WeblogDatabase db;
public:
explicit JoinTest(QObject *parent = 0);
2021-03-14 16:42:04 +08:00
Q_SIGNALS:
2018-01-14 22:03:24 +08:00
2021-03-14 16:42:04 +08:00
private Q_SLOTS:
2018-01-14 22:03:24 +08:00
void initTestCase();
void join();
2018-01-15 06:12:46 +08:00
void join2();
2018-01-14 22:03:24 +08:00
};
#endif // JOINTEST_H