mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-07 01:06:48 +02:00
[ticket/9823] Update Unit tests to the new system and correct some minor issues
PHPBB3-9823
This commit is contained in:
56
tests/functions_acp/build_select_test.php
Normal file
56
tests/functions_acp/build_select_test.php
Normal file
@@ -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));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user