- Use absolute file paths by using $$PWD variable. - Adds unit testing project + unit-test for serialization. - Adds ADS_IMPORT define possibility for static code include. Core - Fixes usage of QBuffer.. missed the QBuffer::open() call..
14 lines
173 B
C++
14 lines
173 B
C++
#ifndef TEST_CORE_H
|
|
#define TEST_CORE_H
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
class TestCore : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
void serialization();
|
|
};
|
|
|
|
#endif |