diff options
author | Andreas Fischer <bantu@phpbb.com> | 2010-08-30 00:54:36 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2010-10-23 18:04:17 +0200 |
commit | afda5e2073981927e4db9c699a5cd72e8df7ef51 (patch) | |
tree | ac4cc3e98fe844094ea05a6eb972120e006f52e1 /tests/download/all_tests.php | |
parent | 5f034c0a0ad786f36a342e3815fba82e05a03343 (diff) | |
download | forums-afda5e2073981927e4db9c699a5cd72e8df7ef51.tar forums-afda5e2073981927e4db9c699a5cd72e8df7ef51.tar.gz forums-afda5e2073981927e4db9c699a5cd72e8df7ef51.tar.bz2 forums-afda5e2073981927e4db9c699a5cd72e8df7ef51.tar.xz forums-afda5e2073981927e4db9c699a5cd72e8df7ef51.zip |
[ticket/9627] Adding unit tests for http_byte_range().
PHPBB3-9627
Diffstat (limited to 'tests/download/all_tests.php')
-rw-r--r-- | tests/download/all_tests.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/download/all_tests.php b/tests/download/all_tests.php index 59a937f70a..21305a887c 100644 --- a/tests/download/all_tests.php +++ b/tests/download/all_tests.php @@ -15,6 +15,8 @@ if (!defined('PHPUnit_MAIN_METHOD')) require_once 'test_framework/framework.php'; require_once 'PHPUnit/TextUI/TestRunner.php'; +require_once 'download/http_byte_range.php'; + class phpbb_download_all_tests { public static function main() @@ -26,6 +28,8 @@ class phpbb_download_all_tests { $suite = new PHPUnit_Framework_TestSuite('phpBB Download Tests'); + $suite->addTestSuite('phpbb_download_http_byte_range_test'); + return $suite; } } |