mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 14:30:32 +02:00
[ticket/12334] Change get_profile_value_raw_data to profile_value_raw_data
PHPBB3-12334
This commit is contained in:
@@ -130,7 +130,7 @@ class phpbb_profilefield_type_bool_test extends phpbb_test_case
|
|||||||
$this->assertSame($expected, $result, $description);
|
$this->assertSame($expected, $result, $description);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_profile_value_raw_data()
|
public function profile_value_raw_data()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
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)
|
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);
|
$this->assertSame($expected, $result, $description);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_profile_value_raw_data()
|
public function profile_value_raw_data()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
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)
|
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);
|
$this->assertSame($expected, $result, $description);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_profile_value_raw_data()
|
public function profile_value_raw_data()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
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)
|
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);
|
$this->assertSame($expected, $result, $description);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_profile_value_raw_data()
|
public function profile_value_raw_data()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
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)
|
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);
|
$this->assertSame($expected, $result, $description);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_profile_value_raw_data()
|
public function profile_value_raw_data()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
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)
|
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);
|
$this->assertSame($expected, $result, $description);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_profile_value_raw_data()
|
public function profile_value_raw_data()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
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)
|
public function test_get_profile_value_raw($value, $field_options, $expected, $description)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user