diff --git a/lib/Cake/Test/Case/AllDatabaseTest.php b/lib/Cake/Test/Case/AllDatabaseTest.php index aa50c5a29ba..c29fa8f15e8 100644 --- a/lib/Cake/Test/Case/AllDatabaseTest.php +++ b/lib/Cake/Test/Case/AllDatabaseTest.php @@ -43,7 +43,10 @@ public static function suite() { 'Datasource' . DS . 'Database' . DS . 'Mysql', 'Datasource' . DS . 'Database' . DS . 'Postgres', 'Datasource' . DS . 'Database' . DS . 'Sqlite', - 'Datasource' . DS . 'Database' . DS . 'Sqlserver' + 'Datasource' . DS . 'Database' . DS . 'Sqlserver', + 'Datasource' . DS . 'CakeSession', + 'Datasource' . DS . 'Session' . DS . 'CacheSession', + 'Datasource' . DS . 'Session' . DS . 'DatabaseSession', ); foreach ($tasks as $task) { $suite->addTestFile($path . $task . 'Test.php'); diff --git a/lib/Cake/Test/Case/AllEventTest.php b/lib/Cake/Test/Case/AllEventTest.php new file mode 100644 index 00000000000..a41b8cd6164 --- /dev/null +++ b/lib/Cake/Test/Case/AllEventTest.php @@ -0,0 +1,40 @@ +addTestDirectory(CORE_TEST_CASES . DS . 'Event'); + return $suite; + } +} + diff --git a/lib/Cake/Test/Case/AllTestsTest.php b/lib/Cake/Test/Case/AllTestsTest.php index 4e6615db5f0..7c5b1719109 100644 --- a/lib/Cake/Test/Case/AllTestsTest.php +++ b/lib/Cake/Test/Case/AllTestsTest.php @@ -45,6 +45,7 @@ public static function suite() { $suite->addTestFile($path . 'AllControllerTest.php'); $suite->addTestFile($path . 'AllDatabaseTest.php'); $suite->addTestFile($path . 'AllErrorTest.php'); + $suite->addTestFile($path . 'AllEventTest.php'); $suite->addTestFile($path . 'AllHelpersTest.php'); $suite->addTestFile($path . 'AllLogTest.php'); $suite->addTestFile($path . 'AllI18nTest.php');