1--TEST--
2SolrObject - test property access
3--FILE--
4<?php
5
6require_once "bootstrap.inc";
7
8$xml_reponse = file_get_contents(EXAMPLE_RESPONSE_XML_1);
9
10$solrObject = SolrUtils::digestXMLResponse($xml_reponse);
11
12$header = $solrObject->responseHeader;
13
14$system = $solrObject->system;
15
16var_dump(isset($solrObject['system']));
17var_dump(property_exists($solrObject, 'system'));
18?>
19--EXPECT--
20bool(true)
21bool(true)