如何使用 QTest 测试 QTableView 版本

How test QTableView edition with QTest?

本文关键字:QTableView 版本 测试 QTest 何使用      更新时间:2023-10-16

我想用QTest模拟QTableView单元格的版本。

我尝试了不同的方法,但没有任何成功:

qtableview->show(); 
/* I think that in my unit test I should no need 
that, could you confirm ? */
QModelIndex modelIndex = qtableview->model()->index(1,1); 
//I have tested that modelIndex is valid and that I retrieved expected data
/*First try: set the currentIndex on modelIndex 
thinking that keyClicks on qtableview will work 
on selected element of the tableview*/
qtableview->setCurrentIndex(modelIndex );
QTest::KeyClicks(qtableview,“Hello Word”);
QCOMPARE->index(1,1).data(), “Hello World”); // —> FAILED
/*Second approach
Get the cell widget*/
QWidget * qwidget = qtableview->indexWidget( modelIndex );
//—> No test since the qwidget is NULL… why ?
/*Third approach
Get the cell widget through the delegate*/
QWidget * qwidget = 
      qtableview->itemDelegate( modelIndex )->createEditor(qtableview,       
                                                           QStyleOptionViewItem(), 
                                                           modelIndex );
QTest::KeyClicks(qwidget ,“Hello Word”);
QCOMPARE->index(1,1).data(), “Hello World”); // —> FAILED

我也添加了三个 proache 没有任何成功

QTest::mouseDClick(qtableview)
QTest::KeyClicks(qtableview,“Hello Word”);

感谢您的帮助。

我认为您需要在显示小部件后处理事件。如果QListView被隐藏,它可能不会做任何事情(因为它应该这样做!看看qWaitForWindowDisplay(qtableview)是否可以解决问题。如果这不起作用,请通过调用 QCoreApplication::p rocessEvents() 直接运行事件循环。看看qWaitForWindowShow,无论如何它都可能旋转一个事件循环。