'; $result = $this->parse($xml, ['{DAV:}root' => 'Sabre\\DAV\\Xml\\Request\PropFind']); $propFind = new PropFind(); $propFind->properties = ['{DAV:}hello']; $this->assertEquals($propFind, $result['value']); } function testDeserializeAllProp() { $xml = ' '; $result = $this->parse($xml, ['{DAV:}root' => 'Sabre\\DAV\\Xml\\Request\PropFind']); $propFind = new PropFind(); $propFind->allProp = true; $this->assertEquals($propFind, $result['value']); } }