mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-25 19:38:53 +00:00
[ticket/12334] Change get_profile_value_raw_data to profile_value_raw_data
PHPBB3-12334
This commit is contained in:
parent
24eeab4883
commit
dbc223b4c3
6 changed files with 12 additions and 12 deletions
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue