mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-05 05:55:15 +02:00
[ticket/9627] Adding download unit tests.
PHPBB3-9627
This commit is contained in:
parent
3c61831010
commit
5f034c0a0a
@ -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;
|
||||
}
|
||||
|
36
tests/download/all_tests.php
Normal file
36
tests/download/all_tests.php
Normal file
@ -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();
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user