Snake case to camel case

This commit is contained in:
Timothy Warren 2017-02-15 16:11:52 -05:00
parent 8c31a3b6d6
commit 71610b241c
2 changed files with 7 additions and 7 deletions

View File

@ -55,7 +55,7 @@ class DispatcherTest extends AnimeClient_TestCase {
public function dataRoute()
{
$default_config = [
$defaultConfig = [
'routes' => [
'routes' => [
'login_form' => [
@ -94,25 +94,25 @@ class DispatcherTest extends AnimeClient_TestCase {
$data = [
'anime_default_routing_manga' => [
'config' => $default_config,
'config' => $defaultConfig,
'controller' => 'manga',
'host' => "localhost",
'uri' => "/manga/plan_to_read",
],
'manga_default_routing_anime' => [
'config' => $default_config,
'config' => $defaultConfig,
'controller' => 'anime',
'host' => "localhost",
'uri' => "/anime/watching",
],
'anime_default_routing_anime' => [
'config' => $default_config,
'config' => $defaultConfig,
'controller' => 'anime',
'host' => 'localhost',
'uri' => '/anime/watching',
],
'manga_default_routing_manga' => [
'config' => $default_config,
'config' => $defaultConfig,
'controller' => 'manga',
'host' => 'localhost',
'uri' => '/manga/plan_to_read'

View File

@ -33,7 +33,7 @@ class RoutingBaseTest extends AnimeClient_TestCase {
/**
* @dataProvider dataSegments
*/
public function testSegments($requestUri, $path, $segments, $last_segment)
public function testSegments($requestUri, $path, $segments, $lastSegment)
{
$this->setSuperGlobals([
'_SERVER' => [
@ -43,7 +43,7 @@ class RoutingBaseTest extends AnimeClient_TestCase {
$this->assertEquals($path, $this->routingBase->path(), "Path is invalid");
$this->assertEquals($segments, $this->routingBase->segments(), "Segments array is invalid");
$this->assertEquals($last_segment, $this->routingBase->last_segment(), "Last segment is invalid");
$this->assertEquals($lastSegment, $this->routingBase->last_segment(), "Last segment is invalid");
foreach($segments as $i => $value)
{