Cascade\Tests\Config\Loader\ClassLoader\Resolver\ConstructorResolverTest::testInitConstructorArgs PHP Method

testInitConstructorArgs() public method

Note that we need to deuplicate the CamelCase conversion here for old fashioned classes
    public function testInitConstructorArgs()
    {
        $expectedConstructorArgs = array();
        foreach ($this->getConstructorArgs() as $param) {
            $expectedConstructorArgs[Util::snakeToCamelCase($param->getName())] = $param;
        }
        $this->assertEquals($expectedConstructorArgs, $this->resolver->getConstructorArgs());
    }