mirror of
https://github.com/QuasarApp/Heart.git
synced 2025-05-15 02:49:40 +00:00
17 lines
283 B
C++
17 lines
283 B
C++
#ifndef UPGRADEDATABASETEST_H
|
|
#define UPGRADEDATABASETEST_H
|
|
#include "test.h"
|
|
#include "testutils.h"
|
|
|
|
class UpgradeDataBaseTest: public Test, protected TestUtils
|
|
{
|
|
public:
|
|
UpgradeDataBaseTest();
|
|
|
|
// Test interface
|
|
public:
|
|
void test();
|
|
};
|
|
|
|
#endif // UPGRADEDATABASETEST_H
|