0
|
1 --TEST--
|
|
2 Test for Console_CommandLine::parse() method (errors 3).
|
|
3 --SKIPIF--
|
|
4 <?php if(php_sapi_name()!='cli') echo 'skip'; ?>
|
|
5 --ARGS--
|
|
6 --float=1.2 2>&1
|
|
7 --FILE--
|
|
8 <?php
|
|
9
|
|
10 require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'tests.inc.php';
|
|
11
|
|
12 try {
|
|
13 $parser = buildParser1();
|
|
14 $result = $parser->parse();
|
|
15 } catch (Console_CommandLine_Exception $exc) {
|
|
16 $parser->displayError($exc->getMessage());
|
|
17 }
|
|
18
|
|
19 ?>
|
|
20 --EXPECT--
|
|
21 Error: You must provide at least 1 argument.
|
|
22 Type "some_program --help" to get help.
|