~ubuntu-branches/ubuntu/trusty/kdepimlibs/trusty

« back to all changes in this revision

Viewing changes to akonadi/tests/monitortest.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg, Rohan Garg, Philip Muškovac
  • Date: 2013-11-23 17:36:44 UTC
  • mfrom: (1.1.102)
  • Revision ID: package-import@ubuntu.com-20131123173644-p5ow94192ezsny8g
Tags: 4:4.11.80-0ubuntu1
[ Rohan Garg ]
* New upstream beta release
  - Bump akonadi requirement to 1.10.45
  - Update install files
  - Update symbols

[ Philip Muškovac ]
* kdepimlibs-dev/-dbg breaks/replaces kdepim-runtime/-dbg (<< 4:4.11.80)

Show diffs side-by-side

added added

removed removed

Lines of Context:
283
283
  QVERIFY( imvspy.isEmpty() );
284
284
  imvspy.clear();
285
285
 
286
 
 
287
286
  // Unsubscribe and re-subscribed a collection that existed before the monitor was created.
288
287
  Collection subCollection = Collection( collectionIdFromPath( "res2/foo2" ) );
289
288
  subCollection.setName( "foo2" );
323
322
  QVERIFY( imvspy.isEmpty() );
324
323
  QVERIFY( irmspy.isEmpty() );
325
324
 
326
 
 
327
325
  // modify a collection
328
326
  monitorCol.setName( "changed name" );
329
327
  CollectionModifyJob *mod = new CollectionModifyJob( monitorCol, this );
348
346
  QVERIFY( imvspy.isEmpty() );
349
347
  QVERIFY( irmspy.isEmpty() );
350
348
 
351
 
 
352
349
  // move a collection
353
350
  Collection dest = Collection( collectionIdFromPath( "res1/foo" ) );
354
351
  CollectionMoveJob *cmove = new CollectionMoveJob( monitorCol, dest, this );
378
375
  QVERIFY( imvspy.isEmpty() );
379
376
  QVERIFY( irmspy.isEmpty() );
380
377
 
381
 
 
382
378
  // delete a collection
383
379
  CollectionDeleteJob *cdel = new CollectionDeleteJob( monitorCol, this );
384
380
  AKVERIFYEXEC( cdel );