Exemple #1
0
 public function testExtensionAttributes()
 {
     $extensionAttributes = $this->property->extensionAttributes;
     $extensionAttributes['foo1'] = array('name' => 'foo1', 'value' => 'bar');
     $extensionAttributes['foo2'] = array('name' => 'foo2', 'value' => 'rab');
     $this->property->extensionAttributes = $extensionAttributes;
     $this->assertEquals('bar', $this->property->extensionAttributes['foo1']['value']);
     $this->assertEquals('rab', $this->property->extensionAttributes['foo2']['value']);
     $propertyXml = $this->property->saveXML();
     $newProperty = new Zend_Gdata_Gapps_Extension_Property();
     $newProperty->transferFromXML($propertyXml);
     $this->assertEquals('bar', $newProperty->extensionAttributes['foo1']['value']);
     $this->assertEquals('rab', $newProperty->extensionAttributes['foo2']['value']);
 }