Mercurial > hg > rc1
view vendor/pear/console_commandline/tests/console_commandline_parse_18.phpt @ 38:ac106d4c8961 default tip
flip /etc/roundcube to point here
author | Charlie Root |
---|---|
date | Sat, 29 Dec 2018 05:39:53 -0500 |
parents | 1e000243b222 |
children |
line wrap: on
line source
--TEST-- Test for Console_CommandLine::parse() method (user argc/argv 2). --SKIPIF-- <?php if(php_sapi_name()!='cli') echo 'skip'; ?> --FILE-- <?php require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'tests.inc.php'; $argv = array('somename', '-v', 'install', '-f', 'foo'); $argc = count($argv); try { $parser = buildParser2(); $result = $parser->parse($argc, $argv); var_dump($result); } catch (Console_CommandLine_Exception $exc) { $parser->displayError($exc->getMessage()); } ?> --EXPECTF-- object(Console_CommandLine_Result)#%d (4) { ["options"]=> array(4) { ["verbose"]=> bool(true) ["logfile"]=> NULL ["help"]=> NULL ["version"]=> NULL } ["args"]=> array(0) { } ["command_name"]=> string(7) "install" ["command"]=> object(Console_CommandLine_Result)#%d (4) { ["options"]=> array(2) { ["force"]=> bool(true) ["help"]=> NULL } ["args"]=> array(1) { ["package"]=> string(3) "foo" } ["command_name"]=> bool(false) ["command"]=> bool(false) } }