| 105 | |
| 106 | |
| 107 | void TestShellBuddy::enableBuddies(bool enable) |
| 108 | { |
| 109 | { |
| 110 | KConfigGroup uiGroup = KSharedConfig::openConfig()->group("UiSettings"); |
| 111 | uiGroup.writeEntry("TabBarArrangeBuddies", (enable ? 1 : 0)); |
| 112 | uiGroup.sync(); |
| 113 | } |
| 114 | Core::self()->uiControllerInternal()->loadSettings(); |
| 115 | QCOMPARE(Core::self()->uiControllerInternal()->arrangeBuddies(), enable); |
| 116 | } |
| 117 | |
| 118 | |
| 119 | void TestShellBuddy::enableOpenAfterCurrent(bool enable) |
nothing calls this directly
no test coverage detected