예제 #1
0
 /**
  * @depends testSimple
  */
 function testUpdateProperties()
 {
     $propPatch = new PropPatch(['{DAV:}displayname' => 'NewName']);
     $result = $this->calendar->propPatch($propPatch);
     $result = $propPatch->commit();
     $this->assertEquals(true, $result);
     $calendars2 = $this->backend->getCalendarsForUser('principals/user1');
     $this->assertEquals('NewName', $calendars2[0]['{DAV:}displayname']);
 }