diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2010-09-16 01:05:12 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2011-02-01 13:38:40 +0100 |
commit | eb2de91e7b3982c2613f93ab05ce4a2001c0f163 (patch) | |
tree | 627c9a32728d9fec0c2d3f4492b2559224d67f52 /tests/functions_acp/all_tests.php | |
parent | 7ff0cff4cdd477702c606bf0188d6ecaa21c833d (diff) | |
download | forums-eb2de91e7b3982c2613f93ab05ce4a2001c0f163.tar forums-eb2de91e7b3982c2613f93ab05ce4a2001c0f163.tar.gz forums-eb2de91e7b3982c2613f93ab05ce4a2001c0f163.tar.bz2 forums-eb2de91e7b3982c2613f93ab05ce4a2001c0f163.tar.xz forums-eb2de91e7b3982c2613f93ab05ce4a2001c0f163.zip |
[ticket/9823] Moving the functions. Unit tests for build_select.
PHPBB3-9823
Diffstat (limited to 'tests/functions_acp/all_tests.php')
-rw-r--r-- | tests/functions_acp/all_tests.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/functions_acp/all_tests.php b/tests/functions_acp/all_tests.php new file mode 100644 index 0000000000..6b2d676e60 --- /dev/null +++ b/tests/functions_acp/all_tests.php @@ -0,0 +1,40 @@ +<?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_functions_all_tests::main'); +} + +require_once 'test_framework/framework.php'; +require_once 'PHPUnit/TextUI/TestRunner.php'; + +require_once 'functions_acp/build_select.php'; + +class phpbb_functions_acp_all_tests +{ + public static function main() + { + PHPUnit_TextUI_TestRunner::run(self::suite()); + } + + public static function suite() + { + $suite = new PHPUnit_Framework_TestSuite('phpBB Network Functions'); + + $suite->addTestSuite('phpbb_functions_acp_built_select_test'); + + return $suite; + } +} + +if (PHPUnit_MAIN_METHOD == 'phpbb_functions_acp_all_tests::main') +{ + phpbb_functions_acp_all_tests::main(); +} |