diff options
| author | marcosptf <marcosptf@yahoo.com.br> | 2015-08-16 14:45:14 -0300 |
|---|---|---|
| committer | Christoph M. Becker <cmb@php.net> | 2015-08-19 22:15:40 +0200 |
| commit | d085100a529adbd3a8bcdb3212f969a5f2c57a47 (patch) | |
| tree | e3d1fd558b34cab8220bedb68919e3077a3bc2d9 | |
| parent | f3abea9f915a85dea00ba809751697c029ed75a2 (diff) | |
| download | php-git-d085100a529adbd3a8bcdb3212f969a5f2c57a47.tar.gz | |
This is a new test for enchant_broker_free_dict().
This function never was covered by .phpt
| -rw-r--r-- | ext/enchant/tests/broker_free_dict.phpt | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/ext/enchant/tests/broker_free_dict.phpt b/ext/enchant/tests/broker_free_dict.phpt new file mode 100644 index 0000000000..f0b6bb6dc3 --- /dev/null +++ b/ext/enchant/tests/broker_free_dict.phpt @@ -0,0 +1,52 @@ +--TEST-- +enchant_broker_free_dict(resource $dict); function +--CREDITS-- +marcosptf - <marcosptf@yahoo.com.br> +--SKIPIF-- +<?php +if(!extension_loaded('enchant')) die('skip, enchant not loader'); +if(!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");} +if(!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary install in this machine! \n");} +?> +--FILE-- +<?php +$broker = enchant_broker_init(); +$dicts = enchant_broker_list_dicts($broker); +$newWord = "iLoveJava"; +if (is_resource($broker)) { + echo("OK\n"); + $requestDict = enchant_broker_request_dict($broker, $dicts[0]['lang_tag']); + + if ($requestDict) { + echo("OK\n"); + $AddtoPersonalDict = enchant_dict_add_to_personal($requestDict, $newWord); + + if (NULL === $AddtoPersonalDict) { + var_dump($AddtoPersonalDict); + + if (enchant_broker_free_dict($requestDict)) { + echo("OK\n"); + + } else { + echo("dict broker free has failed\n"); + } + + } else { + echo("dict add to personal failed\n"); + } + + } else { + echo("broker request dict failed\n"); + } + +} else { + echo("broker is not a resource; failed;\n"); +} +echo "OK\n"; +?> +--EXPECT-- +OK +OK +NULL +OK +OK |
