diff options
author | marcosptf <marcosptf@yahoo.com.br> | 2015-08-07 11:37:40 -0300 |
---|---|---|
committer | marcosptf <marcosptf@yahoo.com.br> | 2015-08-07 11:37:40 -0300 |
commit | d26b5cab41ebf980566e63c69a10341b5df141dc (patch) | |
tree | cf143fec2805a508c079569dd432ad1b99a30cae /ext/enchant | |
parent | e6bc14b6df5ec3821ea46e659ec6ad05a4c28800 (diff) | |
download | php-git-d26b5cab41ebf980566e63c69a10341b5df141dc.tar.gz |
Create dict_suggest.phpt
Diffstat (limited to 'ext/enchant')
-rw-r--r-- | ext/enchant/tests/dict_suggest.phpt | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/ext/enchant/tests/dict_suggest.phpt b/ext/enchant/tests/dict_suggest.phpt new file mode 100644 index 0000000000..2357914bb2 --- /dev/null +++ b/ext/enchant/tests/dict_suggest.phpt @@ -0,0 +1,39 @@ +--TEST-- +enchant_dict_suggest() function +--CREDITS-- +marcosptf - <marcosptf@yahoo.com.br> +--SKIPIF-- +<?php +if(!extension_loaded('enchant')) die('skip, enchant not loader'); +?> +--FILE-- +<?php +$broker = enchant_broker_init(); +$lang = "en_EN"; +$word = "aspell"; + +if (is_resource($broker)) { + echo("OK\n"); + $requestDict = enchant_broker_request_dict($broker,$lang); + + if ($requestDict) { + enchant_dict_quick_check($requestDict,$word,$sugs); + + if (is_array($sugs)) { + echo("OK\n"); + } else { + echo("dict quick check failed\n"); + } + + } else { + echo("broker request dict failed\n"); + + } + +} else { + echo("broker is not a resource; failed;\n"); +} +?> +--EXPECT-- +OK +OK |