how can I run tests for QtQuick-Applications in the main.cpp? The main.qml have a rectangle and inside some buttons. The test class MouseClick.qml implements the javascript test functions who should push the buttons.

int main(int argc, char *argv[])
{
    QGuiApplication app(argc, argv);

    QTestCase = QTestCase(MouseClick); //????

    QtQuick2ApplicationViewer viewer;
    viewer.setMainQmlFile(QStringLiteral("qml/TestApp/main.qml"));
    viewer.showExpanded();

    return app.exec();
}

没有正确的解决方案

其他提示

You can try to look how tests are implemented in Qt. For example

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top