From 5f034c0a0ad786f36a342e3815fba82e05a03343 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Mon, 30 Aug 2010 00:39:29 +0200 Subject: [PATCH] [ticket/9627] Adding download unit tests. PHPBB3-9627 --- tests/all_tests.php | 2 ++ tests/download/all_tests.php | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 tests/download/all_tests.php 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; } diff --git a/tests/download/all_tests.php b/tests/download/all_tests.php new file mode 100644 index 0000000000..59a937f70a --- /dev/null +++ b/tests/download/all_tests.php @@ -0,0 +1,36 @@ +