SVN commit 1144727 by skelly: Fix unit tests. M +9 -1 kselectionproxymodeltest.cpp --- trunk/KDE/kdelibs/kdeui/tests/kselectionproxymodeltest.cpp #1144726:1144727 @@ -178,7 +178,15 @@ template<> void TestData, KSelectionProxyModel::ChildrenOfExactSelection>::testModifyInTopLevelData() { - noop_testModifyInTopLevelData(); + QTest::addColumn("signalList"); + QTest::addColumn("changeList"); + newModifyTest("modify01", IndexFinder(), 0, 0 ); + newModifyTest("modify02", IndexFinder(), 0, 4 ); + newModifyTest("modify03", IndexFinder(), 9, 9 ); + newModifyTest("modify04", IndexFinder(), 6, 9 ); + newModifyTest("modify05", IndexFinder(), 4, 4 ); + newModifyTest("modify06", IndexFinder(), 3, 7 ); + newModifyTest("modify07", IndexFinder(), 0, 9 ); } template<>