Viewing File: /opt/alt/tests/alt-php82-pecl-solr_2.7.0-1.el8/tests/182.solrdocumentfield_unset_property.phpt

--TEST--
SolrDocumentField - exception - on unset property
--FILE--
<?php

require_once "bootstrap.inc";

$field = new SolrDocumentField();

try {
	unset($field->name);
} catch (SolrIllegalOperationException $e) {
	printf("Exception %d: %s", $e->getCode(), $e->getMessage());
}

?>
--EXPECT--
Exception 1007: SolrDocumentField instances are read-only. Properties cannot be updated or removed.
Back to Directory File Manager
<