summaryrefslogtreecommitdiff
path: root/tests/auto/qml/qml.cpp
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2016-08-02 11:25:57 +0200
committerLiang Qi <liang.qi@qt.io>2016-08-03 04:23:45 +0200
commita5d51e11b76d8f6a6276f7e89bf0ccbc2985d474 (patch)
treecbb473923af7db204045f6cea3882e152d3f2e8c /tests/auto/qml/qml.cpp
parent91ebebdbf26907c126dcc367832ed524d64b94cf (diff)
parentd342edcc22d3c9c0299e86805d93e7031507345b (diff)
downloadqtwebchannel-a5d51e11b76d8f6a6276f7e89bf0ccbc2985d474.tar.gz
Merge remote-tracking branch 'origin/5.7' into dev
Conflicts: .qmake.conf tests/auto/webchannel/tst_webchannel.cpp tests/auto/webchannel/tst_webchannel.h Change-Id: I01b0f58c10acbef8e2d5d15fc5787e755f519af8
Diffstat (limited to 'tests/auto/qml/qml.cpp')
-rw-r--r--tests/auto/qml/qml.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/qml/qml.cpp b/tests/auto/qml/qml.cpp
index a974854..dcf1228 100644
--- a/tests/auto/qml/qml.cpp
+++ b/tests/auto/qml/qml.cpp
@@ -35,11 +35,13 @@
#include "testtransport.h"
#include "testwebchannel.h"
+#include "testobject.h"
int main(int argc, char **argv)
{
qmlRegisterType<TestTransport>("QtWebChannel.Tests", 1, 0, "TestTransport");
qmlRegisterType<TestWebChannel>("QtWebChannel.Tests", 1, 0, "TestWebChannel");
+ qmlRegisterType<TestObject>("QtWebChannel.Tests", 1, 0, "TestObject");
return quick_test_main(argc, argv, "qml", QUICK_TEST_SOURCE_DIR);
}