summaryrefslogtreecommitdiff
path: root/tests/unit/Data
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/Data
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/Data')
-rw-r--r--tests/unit/Data/TDbTransactionTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/Data/TDbTransactionTest.php b/tests/unit/Data/TDbTransactionTest.php
index 9d34857d..4cfd2943 100644
--- a/tests/unit/Data/TDbTransactionTest.php
+++ b/tests/unit/Data/TDbTransactionTest.php
@@ -1,6 +1,6 @@
<?php
-require_once(dirname(__FILE__).'/../phpunit2.php');
+require_once(dirname(__FILE__).'/../phpunit.php');
Prado::using('System.Data.*');
@@ -9,7 +9,7 @@ define('TEST_DB_FILE',dirname(__FILE__).'/db/test.db');
/**
* @package System.Data.PDO
*/
-class TDbTransactionTest extends PHPUnit2_Framework_TestCase
+class TDbTransactionTest extends PHPUnit_Framework_TestCase
{
private $_connection;