summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/helpers/inflector_helper_test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codeigniter/helpers/inflector_helper_test.php')
-rw-r--r--tests/codeigniter/helpers/inflector_helper_test.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/codeigniter/helpers/inflector_helper_test.php b/tests/codeigniter/helpers/inflector_helper_test.php
index e59875e4a..34bc34ebb 100644
--- a/tests/codeigniter/helpers/inflector_helper_test.php
+++ b/tests/codeigniter/helpers/inflector_helper_test.php
@@ -5,7 +5,7 @@ require_once(BASEPATH.'helpers/inflector_helper.php');
class Inflector_helper_test extends CI_TestCase {
- public function testSingular()
+ public function test_singular()
{
$strs = array(
'tellies' => 'telly',
@@ -22,7 +22,7 @@ class Inflector_helper_test extends CI_TestCase {
// --------------------------------------------------------------------
- public function testPlural()
+ public function test_plural()
{
$strs = array(
'telly' => 'tellies',
@@ -40,7 +40,7 @@ class Inflector_helper_test extends CI_TestCase {
// --------------------------------------------------------------------
- public function testCamelize()
+ public function test_camelize()
{
$strs = array(
'this is the string' => 'thisIsTheString',
@@ -57,7 +57,7 @@ class Inflector_helper_test extends CI_TestCase {
// --------------------------------------------------------------------
- public function testUnderscore()
+ public function test_underscore()
{
$strs = array(
'this is the string' => 'this_is_the_string',
@@ -74,7 +74,7 @@ class Inflector_helper_test extends CI_TestCase {
// --------------------------------------------------------------------
- public function testHumanize()
+ public function test_humanize()
{
$strs = array(
'this_is_the_string' => 'This Is The String',