Set up basic tests subdirectories
This commit is contained in:
parent
7a3f4edf4a
commit
00e1432e2d
1
.gitignore
vendored
1
.gitignore
vendored
@ -73,4 +73,5 @@ Thumbs.db
|
|||||||
build/
|
build/
|
||||||
bin/akashi
|
bin/akashi
|
||||||
bin/config/
|
bin/config/
|
||||||
|
bin_tests/
|
||||||
doxygen/html
|
doxygen/html
|
||||||
|
10
akashi.pro
10
akashi.pro
@ -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
|
||||||
|
4
tests/tests.pro
Normal file
4
tests/tests.pro
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
TEMPLATE = subdirs
|
||||||
|
|
||||||
|
SUBDIRS += \
|
||||||
|
unittest_area
|
13
tests/tests_common.pri
Normal file
13
tests/tests_common.pri
Normal 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
|
22
tests/unittest_area/tst_unittest_area.cpp
Normal file
22
tests/unittest_area/tst_unittest_area.cpp
Normal 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"
|
5
tests/unittest_area/unittest_area.pro
Normal file
5
tests/unittest_area/unittest_area.pro
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
QT -= gui
|
||||||
|
|
||||||
|
include(../tests_common.pri)
|
||||||
|
|
||||||
|
SOURCES += tst_unittest_area.cpp
|
Loading…
Reference in New Issue
Block a user