1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 18:54:08 +02:00

[ticket/9627] Adding download unit tests.

PHPBB3-9627
This commit is contained in:
Andreas Fischer
2010-08-30 00:39:29 +02:00
parent 3c61831010
commit 5f034c0a0a
2 changed files with 38 additions and 0 deletions

View File

@@ -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;
}