Neos\ContentRepository\Tests\Unit\Domain\Service\ConfigurationContentDimensionPresetSourceTest::isPresetCombinationAllowedByConstraintsReturnsTrueIfNoConstraintsHaveBeenDefined PHP 메소드

isPresetCombinationAllowedByConstraintsReturnsTrueIfNoConstraintsHaveBeenDefined() 공개 메소드

    public function isPresetCombinationAllowedByConstraintsReturnsTrueIfNoConstraintsHaveBeenDefined()
    {
        $source = new ConfigurationContentDimensionPresetSource();
        $source->setConfiguration($this->configurationWithThreeDimensionsAndManyValues);
        $this->assertTrue($source->isPresetCombinationAllowedByConstraints(array('language' => 'de', 'country' => 'DE')));
    }