Neos\Flow\Tests\Unit\Configuration\Source\YamlSourceTest::optionSetInTheConfigurationFileReallyEndsUpInTheArray PHP Method

optionSetInTheConfigurationFileReallyEndsUpInTheArray() public method

    public function optionSetInTheConfigurationFileReallyEndsUpInTheArray()
    {
        $pathAndFilename = __DIR__ . '/../Fixture/YAMLConfigurationFile';
        $configurationSource = new YamlSource();
        $configuration = $configurationSource->load($pathAndFilename);
        $this->assertTrue($configuration['configurationFileHasBeenLoaded'], 'The option has not been set by the fixture.');
    }