summaryrefslogtreecommitdiff
path: root/tests/unit/Data
diff options
context:
space:
mode:
authorctrlaltca <>2012-11-18 19:08:27 +0000
committerctrlaltca <>2012-11-18 19:08:27 +0000
commit6dff17fee04f8b8a1f35ec8e9afe65ae32b2684c (patch)
treee8e9f9b44ba7975aca3b96f736daa1728b59fe2c /tests/unit/Data
parentdd2fbb7ff2ce3d9885c18a978c79294a13ed9025 (diff)
Reworked the "test" task in order to make it work again:
- it will use the system PHPUnit installation if available (bundled PHPUnit with prado is no more a choice) - fixed tests in order to be compatible with recent phpunit versions (currently 3.7) - dropped old tests referring to unexisting components (NOTE: this includes what seems a test suite for an older version of SQLMap) Added some svn-ignore properties
Diffstat (limited to 'tests/unit/Data')
-rw-r--r--tests/unit/Data/TDbCommandTest.php7
-rw-r--r--tests/unit/Data/TDbConnectionTest.php10
-rw-r--r--tests/unit/Data/TDbDataReaderTest.php7
-rw-r--r--tests/unit/Data/TDbTransactionTest.php5
4 files changed, 13 insertions, 16 deletions
diff --git a/tests/unit/Data/TDbCommandTest.php b/tests/unit/Data/TDbCommandTest.php
index 9023e6b6..a75674bf 100644
--- a/tests/unit/Data/TDbCommandTest.php
+++ b/tests/unit/Data/TDbCommandTest.php
@@ -1,15 +1,14 @@
<?php
-require_once(dirname(__FILE__).'/../phpunit2.php');
-
Prado::using('System.Data.*');
-define('TEST_DB_FILE',dirname(__FILE__).'/db/test.db');
+if(!defined('TEST_DB_FILE'))
+ define('TEST_DB_FILE',dirname(__FILE__).'/db/test.db');
/**
* @package System.Data.PDO
*/
-class TDbCommandTest extends PHPUnit2_Framework_TestCase
+class TDbCommandTest extends PHPUnit_Framework_TestCase
{
private $_connection;
diff --git a/tests/unit/Data/TDbConnectionTest.php b/tests/unit/Data/TDbConnectionTest.php
index 6c1e71aa..8f6ff34f 100644
--- a/tests/unit/Data/TDbConnectionTest.php
+++ b/tests/unit/Data/TDbConnectionTest.php
@@ -1,16 +1,16 @@
<?php
-require_once(dirname(__FILE__).'/../phpunit2.php');
-
Prado::using('System.Data.*');
-define('TEST_DB_FILE',dirname(__FILE__).'/db/test.db');
-define('TEST_DB_FILE2',dirname(__FILE__).'/db/test2.db');
+if(!defined('TEST_DB_FILE'))
+ define('TEST_DB_FILE',dirname(__FILE__).'/db/test.db');
+if(!defined('TEST_DB_FILE2'))
+ define('TEST_DB_FILE2',dirname(__FILE__).'/db/test2.db');
/**
* @package System.Data.PDO
*/
-class TDbConnectionTest extends PHPUnit2_Framework_TestCase
+class TDbConnectionTest extends PHPUnit_Framework_TestCase
{
private $_connection1;
private $_connection2;
diff --git a/tests/unit/Data/TDbDataReaderTest.php b/tests/unit/Data/TDbDataReaderTest.php
index 9d61a330..98aa0385 100644
--- a/tests/unit/Data/TDbDataReaderTest.php
+++ b/tests/unit/Data/TDbDataReaderTest.php
@@ -1,10 +1,9 @@
<?php
-require_once(dirname(__FILE__).'/../phpunit2.php');
-
Prado::using('System.Data.*');
-define('TEST_DB_FILE',dirname(__FILE__).'/db/test.db');
+if(!defined('TEST_DB_FILE'))
+ define('TEST_DB_FILE',dirname(__FILE__).'/db/test.db');
class FooRecord extends TComponent
{
@@ -31,7 +30,7 @@ class FooRecord extends TComponent
/**
* @package System.Data.PDO
*/
-class TDbDataReaderTest extends PHPUnit2_Framework_TestCase
+class TDbDataReaderTest extends PHPUnit_Framework_TestCase
{
private $_connection;
diff --git a/tests/unit/Data/TDbTransactionTest.php b/tests/unit/Data/TDbTransactionTest.php
index 4cfd2943..c608bce1 100644
--- a/tests/unit/Data/TDbTransactionTest.php
+++ b/tests/unit/Data/TDbTransactionTest.php
@@ -1,10 +1,9 @@
<?php
-require_once(dirname(__FILE__).'/../phpunit.php');
-
Prado::using('System.Data.*');
-define('TEST_DB_FILE',dirname(__FILE__).'/db/test.db');
+if(!defined('TEST_DB_FILE'))
+ define('TEST_DB_FILE',dirname(__FILE__).'/db/test.db');
/**
* @package System.Data.PDO