diff options
author | xue <> | 2006-04-25 01:31:43 +0000 |
---|---|---|
committer | xue <> | 2006-04-25 01:31:43 +0000 |
commit | 5ba6cd4be568f686d890835a77586077cde1a943 (patch) | |
tree | 54138a79e147bcfb0f6833d2d284a2f825c18f2a /tests/unit | |
parent | 1afc913c386bba8e6072c278b0eb4fd9818ab310 (diff) |
Merge from 3.0 branch till 967.
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/phpunit2.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/unit/phpunit2.php b/tests/unit/phpunit2.php index 0dbda382..8d9c8d0d 100644 --- a/tests/unit/phpunit2.php +++ b/tests/unit/phpunit2.php @@ -1,6 +1,14 @@ <?php /** * A few common settings for all unit tests. + * + * This file should be included in all unit tests with absolute path to be able to run it + * from the command line with "phpunit" like this: + * + * require_once dirname(__FILE__).'/path/../to/../phpunit2.php'; + * + * Also remember do define the @package attribute for your test class to make it appear under + * the right package in unit test and code coverage reports. */ define('PRADO_FRAMEWORK_DIR', dirname(__FILE__).'/../../framework'); set_include_path(PRADO_FRAMEWORK_DIR.':'.get_include_path()); |