// public QItemSelection mapSelectionFromSource(QItemSelection const& selection) const void tst_QAbstractProxyModel::mapSelectionFromSource() { QFETCH(QItemSelection, selection); QFETCH(QItemSelection, mapSelectionFromSource); SubQAbstractProxyModel model; QCOMPARE(model.mapSelectionFromSource(selection), mapSelectionFromSource); }
void tst_QAbstractProxyModel::qabstractproxymodel() { SubQAbstractProxyModel model; model.data(QModelIndex()); model.flags(QModelIndex()); model.headerData(0, Qt::Vertical, 0); model.itemData(QModelIndex()); model.mapFromSource(QModelIndex()); model.mapSelectionFromSource(QItemSelection()); model.mapSelectionToSource(QItemSelection()); model.mapToSource(QModelIndex()); model.revert(); model.setSourceModel(0); QCOMPARE(model.sourceModel(), (QAbstractItemModel*)0); model.submit(); }