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.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/all_tests.php b/tests/all_tests.php
index feaaa1f0a1..4c2fa891a2 100644
--- a/tests/all_tests.php
+++ b/tests/all_tests.php
@@ -26,6 +26,7 @@ require_once 'dbal/all_tests.php';
require_once 'regex/all_tests.php';
require_once 'network/all_tests.php';
require_once 'random/all_tests.php';
+require_once 'download/all_tests.php';
// exclude the test directory from code coverage reports
if (version_compare(PHPUnit_Runner_Version::id(), '3.5.0') >= 0)
@@ -59,6 +60,7 @@ class phpbb_all_tests
$suite->addTest(phpbb_regex_all_tests::suite());
$suite->addTest(phpbb_network_all_tests::suite());
$suite->addTest(phpbb_random_all_tests::suite());
+ $suite->addTest(phpbb_download_all_tests::suite());
return $suite;
}