| 176 | } |
| 177 | |
| 178 | void TestSessionController::readFromConfig() |
| 179 | { |
| 180 | ISession* s = Core::self()->activeSession(); |
| 181 | KConfigGroup grp( s->config(), "TestGroup" ); |
| 182 | grp.writeEntry( "TestEntry", "Test1" ); |
| 183 | KConfigGroup grp2( s->config(), "TestGroup" ); |
| 184 | QCOMPARE(grp.readEntry( "TestEntry", "" ), QStringLiteral( "Test1" ) ); |
| 185 | } |
| 186 | |
| 187 | void TestSessionController::temporary() |
| 188 | { |
nothing calls this directly
no test coverage detected