diff options
author | godzilla80@gmx.net <> | 2009-03-22 08:02:35 +0000 |
---|---|---|
committer | godzilla80@gmx.net <> | 2009-03-22 08:02:35 +0000 |
commit | 466c414ebc9dde38e80f20fd96fd891431404fca (patch) | |
tree | 9934bdefe395804dc334b4d12637db345f97c8b5 /tests/unit/AllTests.php | |
parent | 1624bf7d560af5789416af904e45975618adef8c (diff) |
Fixed Issue #88 - SQLMap $Param$ re-evaluation bug
Diffstat (limited to 'tests/unit/AllTests.php')
-rw-r--r-- | tests/unit/AllTests.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/unit/AllTests.php b/tests/unit/AllTests.php index 220b9366..62e127c8 100644 --- a/tests/unit/AllTests.php +++ b/tests/unit/AllTests.php @@ -16,6 +16,8 @@ require_once 'Security/AllTests.php'; require_once 'Caching/AllTests.php'; require_once 'Util/AllTests.php'; require_once 'Data/DataGateway/AllTests.php'; +require_once 'Data/SqlMap/AllTests.php'; + require_once 'TComponentTest.php'; @@ -23,10 +25,10 @@ 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(IO_AllTests::suite()); $suite->addTest(Collections_AllTests::suite()); @@ -38,7 +40,8 @@ class AllTests { $suite->addTest(Caching_AllTests::suite()); $suite->addTest(Util_AllTests::suite()); $suite->addTest(Data_DataGateway_AllTests::suite()); - + $suite->addTest(Data_SqlMap_AllTests::suite()); + $suite->addTestSuite('TComponentTest'); return $suite; |