PEAR_RunTest::run

PEAR_RunTest::run() – run

Synopsis

require_once '/RunTest.php';

string|PEAR_Error PEAR_RunTest::run ( string $file , string $ini_settings = '' )

Description

Run a unit test. The return value is one of:

  • PASSED

  • SKIPPED

  • WARNED

  • FAILED

Parameter

string $file

Full path to the test file to run.

string $ini_settings

Additional customized settings to pass on the command-line to the PHP instance used for testing. For example, requesting disabling use of php.ini or a testing php.ini can be specified. For a full list of possible settings, type:

        
$ php -h
        

Throws

throws no exceptions thrown

Note

This function can not be called statically.