Neos\Neos\Tests\Unit\Domain\Service\ConfigurationContentDimensionPresetSourceTest::findPresetByDimensionValuesWithoutExistingUriSegmentReturnsNull PHP Method

findPresetByDimensionValuesWithoutExistingUriSegmentReturnsNull() public method

    public function findPresetByDimensionValuesWithoutExistingUriSegmentReturnsNull()
    {
        $source = new ConfigurationContentDimensionPresetSource();
        $source->setConfiguration($this->validConfiguration);
        $preset = $source->findPresetByDimensionValues('language', array('ja_JP', 'mul_ZZ'));
        $this->assertNull($preset);
    }