aboutsummaryrefslogtreecommitdiffstats
path: root/tests/download
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2010-08-30 00:39:29 +0200
committerAndreas Fischer <bantu@phpbb.com>2010-10-23 18:04:17 +0200
commit5f034c0a0ad786f36a342e3815fba82e05a03343 (patch)
tree934f9292ecdddcfd33aac72de8d54c1328ff796c /tests/download
parent3c618310105ea36ef0d4ea54b9bf9adb5d73e22e (diff)
downloadforums-5f034c0a0ad786f36a342e3815fba82e05a03343.tar
forums-5f034c0a0ad786f36a342e3815fba82e05a03343.tar.gz
forums-5f034c0a0ad786f36a342e3815fba82e05a03343.tar.bz2
forums-5f034c0a0ad786f36a342e3815fba82e05a03343.tar.xz
forums-5f034c0a0ad786f36a342e3815fba82e05a03343.zip
[ticket/9627] Adding download unit tests.
PHPBB3-9627
Diffstat (limited to 'tests/download')
-rw-r--r--tests/download/all_tests.php36
1 files changed, 36 insertions, 0 deletions
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 @@
+<?php
+/**
+*
+* @package testing
+* @copyright (c) 2010 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+*
+*/
+
+if (!defined('PHPUnit_MAIN_METHOD'))
+{
+ define('PHPUnit_MAIN_METHOD', 'phpbb_download_all_tests::main');
+}
+
+require_once 'test_framework/framework.php';
+require_once 'PHPUnit/TextUI/TestRunner.php';
+
+class phpbb_download_all_tests
+{
+ public static function main()
+ {
+ PHPUnit_TextUI_TestRunner::run(self::suite());
+ }
+
+ public static function suite()
+ {
+ $suite = new PHPUnit_Framework_TestSuite('phpBB Download Tests');
+
+ return $suite;
+ }
+}
+
+if (PHPUnit_MAIN_METHOD == 'phpbb_download_all_tests::main')
+{
+ phpbb_regex_all_tests::main();
+}