lang = new phpbb_mock_lang(); } public function build_select_data() { return array( array( array( 'test' => 'TEST', 'second' => 'SEC_OPTION', ), false, '', ), array( array( 'test' => 'TEST', 'second' => 'SEC_OPTION', ), 'test', '', ), array( array( 'test' => 'TEST', 'second' => 'SEC_OPTION', ), 'second', '', ), ); } /** * @dataProvider build_select_data */ public function test_build_select($option_ary, $option_default, $expected) { $this->assertEquals($expected, build_select($option_ary, $option_default)); } }