Cascade\Tests\Config\Loader\ClassLoaderTest::testOptionsToCamelCase PHP Method

testOptionsToCamelCase() public method

    public function testOptionsToCamelCase()
    {
        $array = array('hello_there' => 'Hello', 'bye_bye' => 'Bye');
        $this->assertEquals(array('helloThere' => 'Hello', 'byeBye' => 'Bye'), ClassLoader::optionsToCamelCase($array));
    }