summaryrefslogtreecommitdiff
path: root/tests/unit/AllTests.php
diff options
context:
space:
mode:
authorknut <>2007-05-29 20:29:10 +0000
committerknut <>2007-05-29 20:29:10 +0000
commit376a5af2d258f87e2be75b667850436987c68a55 (patch)
treeff97724cc6ff4d5a474835d7d915ccbde0ca2c54 /tests/unit/AllTests.php
parent82a351192f38cc73268ea7de7a48e2e0425d5cbf (diff)
upgraded unit test suite to use PHPUnit3
use "cd tests/; phpunit AllTests.php" to run the tests use "cd tests/; phpunit --report=coverage AllTests.php" to get a nice code coverage report (need xdebug)
Diffstat (limited to 'tests/unit/AllTests.php')
-rw-r--r--tests/unit/AllTests.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/unit/AllTests.php b/tests/unit/AllTests.php
new file mode 100644
index 00000000..38096801
--- /dev/null
+++ b/tests/unit/AllTests.php
@@ -0,0 +1,39 @@
+<?php
+require_once dirname(__FILE__).'/phpunit.php';
+
+if(!defined('PHPUnit_MAIN_METHOD')) {
+ define('PHPUnit_MAIN_METHOD', 'AllTests::main');
+}
+
+require_once 'Xml/AllTests.php';
+require_once 'Collections/AllTests.php';
+require_once 'I18N/core/AllTests.php';
+require_once 'Web/AllTests.php';
+require_once 'Web/UI/WebControls/AllTests.php';
+
+require_once 'TComponentTest.php';
+
+class AllTests {
+ public static function main() {
+ PHPUnit_TextUI_TestRunner::run(self::suite());
+ }
+
+ public static function suite() {
+ $suite = new PHPUnit_Framework_TestSuite('PRADO PHP Framework');
+
+ $suite->addTest(Xml_AllTests::suite());
+ $suite->addTest(Collections_AllTests::suite());
+ $suite->addTest(I18N_core_AllTests::suite());
+ $suite->addTest(Web_AllTests::suite());
+ $suite->addTest(Web_UI_WebControls_AllTests::suite());
+
+ $suite->addTestSuite('TComponentTest');
+
+ return $suite;
+ }
+}
+
+if(PHPUnit_MAIN_METHOD == 'AllTests::main') {
+ AllTests::main();
+}
+?>