Set up basic tests subdirectories

This commit is contained in:
Cerapter 2021-04-23 20:52:51 +02:00
parent 7a3f4edf4a
commit 00e1432e2d
8 changed files with 53 additions and 2 deletions

1
.gitignore vendored
View File

@ -73,4 +73,5 @@ Thumbs.db
build/ build/
bin/akashi bin/akashi
bin/config/ bin/config/
bin_tests/
doxygen/html doxygen/html

View File

@ -1,7 +1,13 @@
TEMPLATE = subdirs TEMPLATE = subdirs
SUBDIRS += \ SUBDIRS += \
lib \
akashi \ akashi \
lib tests
akashi.depends = lib # Just like how "CONFIG += ordered" is considered harmful a practice for handling
# internal dependecies, so is qmake considered harmful a tool for handling projects
# as Qt expects you to handle them.
#
# Too bad.
CONFIG += ordered

View File

View File

4
tests/tests.pro Normal file
View File

@ -0,0 +1,4 @@
TEMPLATE = subdirs
SUBDIRS += \
unittest_area

13
tests/tests_common.pri Normal file
View File

@ -0,0 +1,13 @@
QT += network websockets core sql testlib
CONFIG += qt console warn_on depend_includepath testcase no_testcase_installs
CONFIG -= app_bundle
DESTDIR = $$PWD/../bin_tests
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../lib/release/ -llib
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../lib/debug/ -llib
else:unix: LIBS += -L$$OUT_PWD/../../lib/ -llib
INCLUDEPATH += $$PWD/../lib
DEPENDPATH += $$PWD/../lib

View File

@ -0,0 +1,22 @@
#include <QtTest>
// add necessary includes here
class UnitTest_Area : public QObject
{
Q_OBJECT
public:
private slots:
void test_case1();
};
void UnitTest_Area::test_case1()
{
QFAIL("Guaranteed failure -- testing tests subdirs setup");
}
QTEST_APPLESS_MAIN(UnitTest_Area)
#include "tst_unittest_area.moc"

View File

@ -0,0 +1,5 @@
QT -= gui
include(../tests_common.pri)
SOURCES += tst_unittest_area.cpp