Nut/test/tst_benckmark/maintest.h

28 lines
416 B
C++

#ifndef MAINTEST_H
#define MAINTEST_H
#include <QtCore/QObject>
#include <QtCore/qglobal.h>
#include "weblogdatabase.h"
class Post;
class MainTest : public QObject
{
Q_OBJECT
WeblogDatabase db;
int postId;
Post *post;
Query<Post> *q;
public:
explicit MainTest(QObject *parent = nullptr);
signals:
private slots:
void initTestCase();
void insert1kPost();
};
#endif // MAINTEST_H