// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause #include #include //! [0] class TestGui: public QObject { Q_OBJECT private slots: void testGui_data(); void testGui(); }; //! [0] //! [1] void TestGui::testGui_data() { QTest::addColumn("events"); QTest::addColumn("expected"); QTestEventList list1; list1.addKeyClick('a'); QTest::newRow("char") << list1 << "a"; QTestEventList list2; list2.addKeyClick('a'); list2.addKeyClick(Qt::Key_Backspace); QTest::newRow("there+back-again") << list2 << ""; } //! [1] //! [2] void TestGui::testGui() { QFETCH(QTestEventList, events); QFETCH(QString, expected); QLineEdit lineEdit; events.simulate(&lineEdit); QCOMPARE(lineEdit.text(), expected); } //! [2] //! [3] QTEST_MAIN(TestGui) #include "testgui.moc" //! [3]