aboutsummaryrefslogtreecommitdiffstats
path: root/tests/all_tests.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2010-03-26 16:41:19 +0100
committerJoas Schilling <nickvergessen@gmx.de>2010-03-26 16:41:19 +0100
commitaf654814f63e05be5236075f06943062be007072 (patch)
tree18b72e7817d2b73a78e93573ab3410539851ec10 /tests/all_tests.php
parent94bc65e2038407b8b6d2b23c195b232e07208d22 (diff)
downloadforums-af654814f63e05be5236075f06943062be007072.tar
forums-af654814f63e05be5236075f06943062be007072.tar.gz
forums-af654814f63e05be5236075f06943062be007072.tar.bz2
forums-af654814f63e05be5236075f06943062be007072.tar.xz
forums-af654814f63e05be5236075f06943062be007072.zip
[feature/dbal-tests] Added tests for dbal fetchrow and fetchfield.
Diffstat (limited to 'tests/all_tests.php')
-rw-r--r--tests/all_tests.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/all_tests.php b/tests/all_tests.php
index 1ed6126e80..e693427809 100644
--- a/tests/all_tests.php
+++ b/tests/all_tests.php
@@ -22,6 +22,7 @@ require_once 'request/all_tests.php';
require_once 'security/all_tests.php';
require_once 'template/all_tests.php';
require_once 'text_processing/all_tests.php';
+require_once 'dbal/all_tests.php';
// exclude the test directory from code coverage reports
PHPUnit_Util_Filter::addDirectoryToFilter('./');
@@ -42,6 +43,7 @@ class phpbb_all_tests
$suite->addTest(phpbb_security_all_tests::suite());
$suite->addTest(phpbb_template_all_tests::suite());
$suite->addTest(phpbb_text_processing_all_tests::suite());
+ $suite->addTest(phpbb_dbal_all_tests::suite());
return $suite;
}