Neos\Flow\Tests\Unit\Log\Backend\AbstractBackendTest::theConstructorCallsSetterMethodsForAllSpecifiedOptions PHP Méthode

theConstructorCallsSetterMethodsForAllSpecifiedOptions() public méthode

    public function theConstructorCallsSetterMethodsForAllSpecifiedOptions()
    {
        $className = $this->backendClassName;
        $backend = new $className(['someOption' => 'someValue']);
        $this->assertSame('someValue', $backend->getSomeOption());
    }