1--TEST--
2Test for Console_CommandLine::fromXmlFile() method.
3--SKIPIF--
4<?php if(php_sapi_name()!='cli') echo 'skip'; ?>
5--ARGS--
6--help 2>&1
7--FILE--
8<?php
9
10require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'tests.inc.php';
11
12$parser = Console_CommandLine::fromXmlFile(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'test.xml');
13$parser->parse();
14
15?>
16--EXPECTF--
17zip/unzip files
18
19Usage:
20  test [options]
21  test [options] <command> [options] [args]
22
23Options:
24  -c choice, --choice=choice        choice option
25  --list-choice                     lists valid choices for option choice
26  -p password, --password=password  zip file password
27  -v, --verbose                     turn on verbose output
28  -h, --help                        show this help message and exit
29  --version                         show the program version and exit
30
31Commands:
32  zip    zip given files in the destination file (aliases: compress, zp)
33  unzip  unzip given file in the destination dir (alias: uzp)
34