test update

This commit is contained in:
ea4k 2022-08-20 20:02:17 +02:00
parent 8e37038aa5
commit c901469a7e
2 changed files with 37 additions and 9 deletions

View File

@ -23,8 +23,8 @@
# * * # * *
# *****************************************************************************/ # *****************************************************************************/
TEMPLATE = subdirs TEMPLATE = subdirs
SUBDIRS += src SUBDIRS += src \
SUBDIRS += tests tests
#CONFIG(debug, debug) { #CONFIG(debug, debug) {
# SUBDIRS += tests # SUBDIRS += tests
#} #}

View File

@ -28,7 +28,13 @@
#include <QtTest> #include <QtTest>
#include "../../src/dataproxy_sqlite.h" #include "../../src/dataproxy_sqlite.h"
#include "../../src/utilities.h" #include "../../src/utilities.h"
/*
initTestCase() will be called before the first test function is executed.
initTestCase_data() will be called to create a global test data table.
cleanupTestCase() will be called after the last test function was executed.
init() will be called before each test function is executed.
cleanup() will be called after every test function.
*/
class tst_DataProxy : public QObject class tst_DataProxy : public QObject
{ {
Q_OBJECT Q_OBJECT
@ -38,12 +44,21 @@ public:
~tst_DataProxy(); ~tst_DataProxy();
private slots: private slots:
void initTestCase(); //void initTestCase(); // will be called before the first test function is executed.
void cleanupTestCase(); //void initTestCase_data(); // will be called to create a global test data table.
//void cleanupTestCase(); // will be called after the last test function was executed.
//void init(); // will be called before each test function is executed.
//void cleanup(); // will be called after every test function.
void test_Constructor(); void test_Constructor();
void test_modes_data(); void test_modes_data();
void test_modes(); void test_modes();
void test_bands(); void test_bands();
//void test_getProgresStepForDialog(); //void test_getProgresStepForDialog();
private: private:
@ -61,19 +76,32 @@ tst_DataProxy::tst_DataProxy()
tst_DataProxy::~tst_DataProxy() tst_DataProxy::~tst_DataProxy()
{ {
qDebug() << Q_FUNC_INFO;
delete (util);
delete (dataProxy);
} }
/*
void tst_DataProxy::initTestCase() void tst_DataProxy::initTestCase()
{ {
qDebug() << Q_FUNC_INFO;
} }
void tst_DataProxy::cleanupTestCase() void tst_DataProxy::cleanupTestCase()
{ {
qDebug() << Q_FUNC_INFO;
} }
void tst_DataProxy::init()
{
qDebug() << Q_FUNC_INFO;
}
void tst_DataProxy::cleanup()
{
qDebug() << Q_FUNC_INFO;
}
*/
void tst_DataProxy::test_Constructor() void tst_DataProxy::test_Constructor()
{ {
QVERIFY2(util->getVersion() == "0.0", "Version failed"); QVERIFY2(util->getVersion() == "0.0", "Version failed");