Nut/test/tst_upgrades/tst_upgrades.h

29 lines
362 B
C
Raw Normal View History

2019-02-14 22:25:53 +08:00
#ifndef TST_UPGRADES_H
#define TST_UPGRADES_H
#include <QObject>
namespace Nut {
class Database;
}
class Upgrades : public QObject
{
Q_OBJECT
void initDb(Nut::Database &db);
public:
Upgrades();
~Upgrades();
private slots:
void initTestCase();
void version1();
void version2();
void version3();
};
#endif // TST_UPGRADES_H