Nut/tests/auto/tst_properties/tst_properties.h

27 lines
427 B
C
Raw Normal View History

#ifndef TST_PROPERTIES_H
#define TST_PROPERTIES_H
#include <QtCore/QObject>
#include <QtCore/qglobal.h>
#include "sampledatabase.h"
class PropertiesTest : public QObject
{
Q_OBJECT
SampleDataBase db;
public:
explicit PropertiesTest(QObject *parent = nullptr);
2021-03-14 16:42:04 +08:00
Q_SIGNALS:
2021-03-14 16:42:04 +08:00
private Q_SLOTS:
void initTestCase();
void insert();
void select();
void parallelUpdate();
};
#endif // TST_PROPERTIES_H