forked from ondra/colnod-connector
24 lines
354 B
C++
24 lines
354 B
C++
#include <QtTest>
|
|
|
|
#include "syncmanager.h"
|
|
// add necessary includes here
|
|
|
|
class SyncManagerTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void sync_init_test();
|
|
|
|
};
|
|
|
|
void SyncManagerTest::sync_init_test()
|
|
{
|
|
SyncManager sync(true);
|
|
|
|
QVERIFY(sync.databaseInitialization());
|
|
}
|
|
|
|
QTEST_MAIN(SyncManagerTest)
|
|
|
|
#include "tst_syncmanager.moc"
|