aboutsummaryrefslogtreecommitdiffstats
path: root/tests/all_tests.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/all_tests.php')
-rw-r--r--tests/all_tests.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/all_tests.php b/tests/all_tests.php
index 407a72f4f7..f99ecf628d 100644
--- a/tests/all_tests.php
+++ b/tests/all_tests.php
@@ -8,8 +8,11 @@ if (!defined('PHPUnit_MAIN_METHOD'))
require_once 'PHPUnit/Framework.php';
require_once 'PHPUnit/TextUI/TestRunner.php';
+require_once 'bbcode/all_tests.php';
require_once 'utf/all_tests.php';
+PHPUnit_Util_Filter::addDirectoryToFilter('./');
+
class phpbb_all_tests
{
public static function main()
@@ -21,6 +24,7 @@ class phpbb_all_tests
{
$suite = new PHPUnit_Framework_TestSuite('phpBB');
+ $suite->addTest(phpbb_bbcode_all_tests::suite());
$suite->addTest(phpbb_utf_all_tests::suite());
return $suite;