47 lines
847 B
C++
47 lines
847 B
C++
#ifndef MAINTEST_H
|
|
#define MAINTEST_H
|
|
|
|
#include <QtCore/QObject>
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#include "weblogdatabase.h"
|
|
class Post;
|
|
class User;
|
|
class MainTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
WeblogDatabase db;
|
|
int postId;
|
|
Post *post;
|
|
User *user;
|
|
|
|
public:
|
|
explicit MainTest(QObject *parent = nullptr);
|
|
|
|
signals:
|
|
|
|
private slots:
|
|
void initTestCase();
|
|
|
|
void dataScheema();
|
|
void createUser();
|
|
void createPost();
|
|
void createPost2();
|
|
void selectPublicts();
|
|
void join();
|
|
void selectPosts();
|
|
void selectScoreAverage();
|
|
void selectFirst();
|
|
void selectPostsWithoutTitle();
|
|
void selectPostIds();
|
|
void updatePostOnTheFly();
|
|
void testDate();
|
|
void selectWithInvalidRelation();
|
|
void modifyPost();
|
|
void emptyDatabase();
|
|
|
|
void cleanupTestCase();
|
|
};
|
|
|
|
#endif // MAINTEST_H
|