[ticket/12334] Change get_profile_value_raw_data to profile_value_raw_data

PHPBB3-12334
This commit is contained in:
Shitiz Garg 2014-06-27 19:03:19 +05:30
parent 24eeab4883
commit dbc223b4c3
6 changed files with 12 additions and 12 deletions

View file

@ -130,7 +130,7 @@ class phpbb_profilefield_type_bool_test extends phpbb_test_case
$this->assertSame($expected, $result, $description);
}
public function get_profile_value_raw_data()
public function profile_value_raw_data()
{
return array(
array(
@ -167,7 +167,7 @@ class phpbb_profilefield_type_bool_test extends phpbb_test_case
}
/**
* @dataProvider get_profile_value_raw_data
* @dataProvider profile_value_raw_data
*/
public function test_get_profile_value_raw($value, $field_options, $expected, $description)
{

View file

@ -179,7 +179,7 @@ class phpbb_profilefield_type_date_test extends phpbb_test_case
$this->assertSame($expected, $result, $description);
}
public function get_profile_value_raw_data()
public function profile_value_raw_data()
{
return array(
array(
@ -204,7 +204,7 @@ class phpbb_profilefield_type_date_test extends phpbb_test_case
}
/**
* @dataProvider get_profile_value_raw_data
* @dataProvider profile_value_raw_data
*/
public function test_get_profile_value_raw($value, $field_options, $expected, $description)
{

View file

@ -170,7 +170,7 @@ class phpbb_profilefield_type_dropdown_test extends phpbb_test_case
$this->assertSame($expected, $result, $description);
}
public function get_profile_value_raw_data()
public function profile_value_raw_data()
{
return array(
array(
@ -207,7 +207,7 @@ class phpbb_profilefield_type_dropdown_test extends phpbb_test_case
}
/**
* @dataProvider get_profile_value_raw_data
* @dataProvider profile_value_raw_data
*/
public function test_get_profile_value_raw($value, $field_options, $expected, $description)
{

View file

@ -169,7 +169,7 @@ class phpbb_profilefield_type_int_test extends phpbb_test_case
$this->assertSame($expected, $result, $description);
}
public function get_profile_value_raw_data()
public function profile_value_raw_data()
{
return array(
array(
@ -212,7 +212,7 @@ class phpbb_profilefield_type_int_test extends phpbb_test_case
}
/**
* @dataProvider get_profile_value_raw_data
* @dataProvider profile_value_raw_data
*/
public function test_get_profile_value_raw($value, $field_options, $expected, $description)
{

View file

@ -225,7 +225,7 @@ class phpbb_profilefield_type_string_test extends phpbb_test_case
$this->assertSame($expected, $result, $description);
}
public function get_profile_value_raw_data()
public function profile_value_raw_data()
{
return array(
array(
@ -244,7 +244,7 @@ class phpbb_profilefield_type_string_test extends phpbb_test_case
}
/**
* @dataProvider get_profile_value_raw_data
* @dataProvider profile_value_raw_data
*/
public function test_get_profile_value_raw($value, $field_options, $expected, $description)
{

View file

@ -104,7 +104,7 @@ class phpbb_profilefield_type_url_test extends phpbb_test_case
$this->assertSame($expected, $result, $description);
}
public function get_profile_value_raw_data()
public function profile_value_raw_data()
{
return array(
array(
@ -123,7 +123,7 @@ class phpbb_profilefield_type_url_test extends phpbb_test_case
}
/**
* @dataProvider get_profile_value_raw_data
* @dataProvider profile_value_raw_data
*/
public function test_get_profile_value_raw($value, $field_options, $expected, $description)
{