Neos\Flow\Tests\Unit\Mvc\ActionRequestTest::caseSensitiveObjectNames PHP Method

caseSensitiveObjectNames() public method

Data Provider
    public function caseSensitiveObjectNames()
    {
        return [['Neos\\Foo\\Controller\\BarController', ['controllerPackageKey' => 'Neos.Foo', 'controllerSubpackageKey' => '', 'controllerName' => 'Bar']], ['Neos\\Foo\\Bar\\Controller\\BazController', ['controllerPackageKey' => 'Neos.Foo', 'controllerSubpackageKey' => 'Bar', 'controllerName' => 'Baz']], ['Neos\\Foo\\Bar\\Bla\\Controller\\Baz\\QuuxController', ['controllerPackageKey' => 'Neos.Foo', 'controllerSubpackageKey' => 'Bar\\Bla', 'controllerName' => 'Baz\\Quux']], ['Neos\\Foo\\Controller\\Bar\\BazController', ['controllerPackageKey' => 'Neos.Foo', 'controllerSubpackageKey' => '', 'controllerName' => 'Bar\\Baz']], ['Neos\\Foo\\Controller\\Bar\\Baz\\QuuxController', ['controllerPackageKey' => 'Neos.Foo', 'controllerSubpackageKey' => '', 'controllerName' => 'Bar\\Baz\\Quux']]];
    }
ActionRequestTest