Neos\Cache\Tests\Unit\Backend\AbstractBackendTest::theConstructorCallsSetterMethodsForAllSpecifiedOptions PHP Method

theConstructorCallsSetterMethodsForAllSpecifiedOptions() public method

    public function theConstructorCallsSetterMethodsForAllSpecifiedOptions()
    {
        $className = get_class($this->backend);
        $backend = new $className(new EnvironmentConfiguration('Ultraman Neos Testing', '/some/path', PHP_MAXPATHLEN), ['someOption' => 'someValue']);
        $this->assertSame('someValue', $backend->getSomeOption());
    }