ru_php/ext/enchant/tests/broker_free.phpt

24 lines
434 B
PHP

--TEST--
enchant_broker_free() function
--CREDITS--
marcosptf - <marcosptf@yahoo.com.br>
--EXTENSIONS--
enchant
--FILE--
<?php
$broker = enchant_broker_init();
if (is_object($broker)) {
echo "OK\n";
enchant_broker_free($broker);
} else {
exit("init failed\n");
}
echo "OK\n";
?>
--EXPECTF--
OK
Deprecated: Function enchant_broker_free() is deprecated since 8.0, as EnchantBroker objects are freed automatically in %s
OK