PEAR
[ class tree: PEAR ] [ index: PEAR ] [ all elements ]

Source for file Test-init.php

Documentation is available at Test-init.php

  1. <?php
  2. // quick-load, small memory footprint command configuration
  3. $implements = array(
  4.         'run-tests' => array(
  5.             'summary' => 'Run Regression Tests',
  6.             'function' => 'doRunTests',
  7.             'shortcut' => 'rt',
  8.             'options' => array(
  9.                 'recur' => array(
  10.                     'shortopt' => 'r',
  11.                     'doc' => 'Run tests in child directories, recursively.  4 dirs deep maximum',
  12.                 ),
  13.                 'ini' => array(
  14.                     'shortopt' => 'i',
  15.                     'doc' => 'actual string of settings to pass to php in format " -d setting=blah"',
  16.                     'arg' => 'SETTINGS'
  17.                 ),
  18.                 'realtimelog' => array(
  19.                     'shortopt' => 'l',
  20.                     'doc' => 'Log test runs/results as they are run',
  21.                 ),
  22.                 'quiet' => array(
  23.                     'shortopt' => 'q',
  24.                     'doc' => 'Only display detail for failed tests',
  25.                 ),
  26.                 'simple' => array(
  27.                     'shortopt' => 's',
  28.                     'doc' => 'Display simple output for all tests',
  29.                 ),
  30.                 'package' => array(
  31.                     'shortopt' => 'p',
  32.                     'doc' => 'Treat parameters as installed packages from which to run tests',
  33.                 ),
  34.             ),
  35.             'doc' => '[testfile|dir ...]
  36. Run regression tests with PHP\'s regression testing script (run-tests.php).',
  37.             ),
  38.         );
  39. ?>

Documentation generated on Mon, 11 Mar 2019 14:15:34 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.