* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
require_once dirname(__FILE__) . '/../../phpBB/includes/functions_acp.php';
class phpbb_functions_acp_h_radio_test extends phpbb_test_case
{
	protected function setUp()
	{
		parent::setUp();
		global $user;
		$user = new phpbb_mock_user();
		$user->lang = new phpbb_mock_lang();
	}
	public function h_radio_data()
	{
		return array(
			array(
				'test_name',
				array(
					'test'		=> 'TEST',
					'second'	=> 'SEC_OPTION',
				),
				false,
				false,
				false,
				'',
			),
			array(
				'test_name',
				array(
					'test'		=> 'TEST',
					'second'	=> 'SEC_OPTION',
				),
				'test',
				false,
				false,
				'',
			),
			array(
				'test_name',
				array(
					'test'		=> 'TEST',
					'second'	=> 'SEC_OPTION',
				),
				false,
				'test_id',
				false,
				'',
			),
			array(
				'test_name',
				array(
					'test'		=> 'TEST',
					'second'	=> 'SEC_OPTION',
				),
				'test',
				'test_id',
				false,
				'',
			),
			array(
				'test_name',
				array(
					'test'		=> 'TEST',
					'second'	=> 'SEC_OPTION',
				),
				false,
				false,
				'k',
				'',
			),
			array(
				'test_name',
				array(
					'test'		=> 'TEST',
					'second'	=> 'SEC_OPTION',
				),
				'test',
				false,
				'k',
				'',
			),
			array(
				'test_name',
				array(
					'test'		=> 'TEST',
					'second'	=> 'SEC_OPTION',
				),
				false,
				'test_id',
				'k',
				'',
			),
			array(
				'test_name',
				array(
					'test'		=> 'TEST',
					'second'	=> 'SEC_OPTION',
				),
				'test',
				'test_id',
				'k',
				'',
			),
		);
	}
	/**
	* @dataProvider h_radio_data
	*/
	public function test_h_radio($name, $input_ary, $input_default, $id, $key, $expected)
	{
		$this->assertEquals($expected, h_radio($name, $input_ary, $input_default, $id, $key));
	}
}