// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #include #include #ifndef QUICK_TEST_SOURCE_DIR #define QUICK_TEST_SOURCE_DIR nullptr #endif #include "testtransport.h" #include "testwebchannel.h" #include "testobject.h" int main(int argc, char **argv) { qmlRegisterType("QtWebChannel.Tests", 1, 0, "TestTransport"); qmlRegisterType("QtWebChannel.Tests", 1, 0, "TestWebChannel"); qmlRegisterType("QtWebChannel.Tests", 1, 0, "TestObject"); return quick_test_main(argc, argv, "qml", QUICK_TEST_SOURCE_DIR); }