summaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
authorknut <>2006-04-24 21:34:00 +0000
committerknut <>2006-04-24 21:34:00 +0000
commit5773b275b4a79bb31471d43faf7f60f380897968 (patch)
tree5cc5a39524921e70062579cf5b9257d114215b5c /tests/unit
parentdccc1f0a093ad32796e06be09b112acf40384490 (diff)
Added a few comments on unit tests
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/phpunit2.php8
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());