diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2011-02-01 14:09:52 +0100 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2011-02-01 14:09:52 +0100 |
| commit | 6b00d7aa096b01ce6e59a8467f79eb193c25a35b (patch) | |
| tree | cc3b4cdd973bc9aaf094145d318462704cd1fe6a /tests/functions_acp/build_select_test.php | |
| parent | 2b70f3d0e2c85f4ff639aec1077afff3154506dc (diff) | |
| download | forums-6b00d7aa096b01ce6e59a8467f79eb193c25a35b.tar forums-6b00d7aa096b01ce6e59a8467f79eb193c25a35b.tar.gz forums-6b00d7aa096b01ce6e59a8467f79eb193c25a35b.tar.bz2 forums-6b00d7aa096b01ce6e59a8467f79eb193c25a35b.tar.xz forums-6b00d7aa096b01ce6e59a8467f79eb193c25a35b.zip | |
[ticket/9823] Update Unit tests to the new system and correct some minor issues
PHPBB3-9823
Diffstat (limited to 'tests/functions_acp/build_select_test.php')
| -rw-r--r-- | tests/functions_acp/build_select_test.php | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/tests/functions_acp/build_select_test.php b/tests/functions_acp/build_select_test.php new file mode 100644 index 0000000000..a4f5e419ea --- /dev/null +++ b/tests/functions_acp/build_select_test.php @@ -0,0 +1,56 @@ +<?php +/** +* +* @package testing +* @copyright (c) 2010 phpBB Group +* @license http://opensource.org/licenses/gpl-license.php GNU Public License +* +*/ + +require_once dirname(__FILE__) . 'user_mock.php'; +require_once dirname(__FILE__) . '../../phpBB/includes/functions_acp.php'; + +class phpbb_functions_acp_built_select_test extends phpbb_test_case +{ + public function build_select_data() + { + return array( + array( + array( + 'test' => 'TEST', + 'second' => 'SEC_OPTION', + ), + false, + '<option value="test">TEST</option><option value="second">SEC_OPTION</option>', + ), + array( + array( + 'test' => 'TEST', + 'second' => 'SEC_OPTION', + ), + 'test', + '<option value="test" selected="selected">TEST</option><option value="second">SEC_OPTION</option>', + ), + array( + array( + 'test' => 'TEST', + 'second' => 'SEC_OPTION', + ), + 'second', + '<option value="test">TEST</option><option value="second" selected="selected">SEC_OPTION</option>', + ), + ); + } + + /** + * @dataProvider build_select_data + */ + public function test_build_select($option_ary, $option_default, $expected) + { + global $user; + + $user->lang = new phpbb_mock_lang(); + + $this->assertEquals($expected, build_select($option_ary, $option_default)); + } +} |
