1

我想用 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

我也在三个方法中添加了没有任何成功

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

谢谢你的帮助。

4

1 回答 1

0

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

于 2012-05-08T22:59:34.983 回答