Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Unsolved Qt Unit testing Error Please Help!!

    General and Desktop
    2
    2
    156
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Amogh
      Amogh last edited by

      I was trying to execute the sample unit test for Gui Element !
      #include <QString>
      #include <QtTest>
      #include<QtWidgets>

      class Sample_Unit_Testing : public QObject
      {
      Q_OBJECT

      public:
      Sample_Unit_Testing();

      private Q_SLOTS:
      void tst_Gui();
      };
      void Sample_Unit_Testing::tst_Gui()
      {
      QLineEdit line_edit;
      QTest::keyClicks(&line_edit,"abcd");
      QCOMPARE(line_edit.text(),QString("abcd"));
      }

      this is my code, When i run this code i get an error which says

      QFATAL : Sample_Unit_Testing::tst_Gui() QWidget: Must construct a QApplication before a QWidget
      FAIL! : Sample_Unit_Testing::tst_Gui() Received a fatal error.

      Can anybody explain it me about the error and help??

      aha_1980 1 Reply Last reply Reply Quote 0
      • aha_1980
        aha_1980 Lifetime Qt Champion @Amogh last edited by

        Hi @Amogh,

        do you use QTEST_MAIN? If not, please show your main function resp. use QTEST_MAIN.

        Regards

        Qt has to stay free or it will die.

        1 Reply Last reply Reply Quote 2
        • First post
          Last post