gpt4 book ai didi

c++ - Qt Gui 单元测试 : Must construct a QApplication before a QPaintDevice

转载 作者:搜寻专家 更新时间:2023-10-31 00:39:10 25 4
gpt4 key购买 nike

我设法使用 this tutorial 编写了“Gui 单元测试” .但是,当我编译我的代码时,我得到了这个:

PASS   : testUnits::initTestCase()
PASS : testUnits::toUpper()
QFATAL : testUnits::testGui() QWidget: Must construct a QApplication before a QPaintDevice
FAIL! : testUnits::testGui() Received a fatal error.
Unknown file(0) : failure location
Totals: 2 passed, 1 failed, 0 skipped
********* Finished testing of testUnits *********

为什么提示我:必须在 QPaintDevice 之前构造一个 QApplication?

最佳答案

它现在可以工作了,这是我的 Gui 单元测试函数定义:

void testUnits::testGui(){
QLineEdit lineEdit;
QTest::keyClicks(&lineEdit,"hellow world");
QCOMPARE(lineEdit.text(), QString("hello world"));
}

这是解决问题之前我的 main() 的样子:

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

testUnits testString;
QTest::qExec(&testString, argc, argv);

QApplication a(argc, argv);
MainWindow w;
w.show();

return a.exec();
}

因此,当我编译代码时,它会在构造 QApplication 之前执行单元测试。

因此我将我的 QTest::qExec() 放在 QApplication 之后,现在它可以工作了,main() 看起来像这样:

int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();

testUnits testString;
QTest::qExec(&testString, argc, argv);

return a.exec();
}

关于c++ - Qt Gui 单元测试 : Must construct a QApplication before a QPaintDevice,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16710924/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com