File indexing completed on 2024-11-24 04:44:38
0001 Resource.setType( "akonadi_vcard_resource" ); 0002 Resource.setPathOption( "Path", "vcardtest.vcf" ); 0003 Resource.create(); 0004 0005 XmlOperations.setXmlFile( "vcardtest.xml" ); 0006 XmlOperations.setRootCollections( Resource.identifier() ); 0007 XmlOperations.setCollectionKey( "None" ); // we only expect one collection 0008 XmlOperations.ignoreCollectionField( "Name" ); // name is the resource identifier and thus unpredictable 0009 XmlOperations.ignoreCollectionField( "RemoteId" ); // remote id is the absolute path 0010 XmlOperations.assertEqual(); 0011