aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/profilefields/type_bool_test.php4
-rw-r--r--tests/profilefields/type_date_test.php4
-rw-r--r--tests/profilefields/type_dropdown_test.php4
-rw-r--r--tests/profilefields/type_int_test.php4
-rw-r--r--tests/profilefields/type_string_test.php4
-rw-r--r--tests/profilefields/type_url_test.php4
6 files changed, 12 insertions, 12 deletions
diff --git a/tests/profilefields/type_bool_test.php b/tests/profilefields/type_bool_test.php
index ad9dd6514c..bdab179c8c 100644
--- a/tests/profilefields/type_bool_test.php
+++ b/tests/profilefields/type_bool_test.php
@@ -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)
{
diff --git a/tests/profilefields/type_date_test.php b/tests/profilefields/type_date_test.php
index 7f719d0f03..0ad2cde9fe 100644
--- a/tests/profilefields/type_date_test.php
+++ b/tests/profilefields/type_date_test.php
@@ -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)
{
diff --git a/tests/profilefields/type_dropdown_test.php b/tests/profilefields/type_dropdown_test.php
index ae5402177a..1d20578fc1 100644
--- a/tests/profilefields/type_dropdown_test.php
+++ b/tests/profilefields/type_dropdown_test.php
@@ -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)
{
diff --git a/tests/profilefields/type_int_test.php b/tests/profilefields/type_int_test.php
index 312b3874b8..4b7bbc18c4 100644
--- a/tests/profilefields/type_int_test.php
+++ b/tests/profilefields/type_int_test.php
@@ -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)
{
diff --git a/tests/profilefields/type_string_test.php b/tests/profilefields/type_string_test.php
index 2b3d239c3e..0df42f388f 100644
--- a/tests/profilefields/type_string_test.php
+++ b/tests/profilefields/type_string_test.php
@@ -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)
{
diff --git a/tests/profilefields/type_url_test.php b/tests/profilefields/type_url_test.php
index 607cb7b9aa..a45a28e7c7 100644
--- a/tests/profilefields/type_url_test.php
+++ b/tests/profilefields/type_url_test.php
@@ -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)
{