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