From afda5e2073981927e4db9c699a5cd72e8df7ef51 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Mon, 30 Aug 2010 00:54:36 +0200 Subject: [ticket/9627] Adding unit tests for http_byte_range(). PHPBB3-9627 --- tests/download/all_tests.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/download/all_tests.php') 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; } } -- cgit v1.2.1