findPresetByUriSegment() публичный Метод

public findPresetByUriSegment ( $dimensionName, $uriSegment )
 /**
  * @test
  */
 public function findPresetByUriSegmentWithoutExistingUriSegmentReturnsNull()
 {
     $source = new ConfigurationContentDimensionPresetSource();
     $source->setConfiguration($this->validConfiguration);
     $preset = $source->findPresetByUriSegment('language', 'english');
     $this->assertNull($preset);
 }