eZ\Publish\Core\Persistence\Legacy\Tests\Content\UrlAlias\SlugConverterTest::testConvert PHP Метод

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

Test for the convert() method.
public testConvert ( )
    public function testConvert()
    {
        $slugConverter = $this->getSlugConverterMock(array('cleanupText'));
        $transformationProcessor = $this->getTransformationProcessorMock();
        $text = 'test text  č ';
        $transformedText = 'test text  c ';
        $slug = 'test_text_c';
        $transformationProcessor->expects($this->atLeastOnce())->method('transform')->with($text, array('test_command1'))->will($this->returnValue($transformedText));
        $slugConverter->expects($this->once())->method('cleanupText')->with($this->equalTo($transformedText), $this->equalTo('test_cleanup1'))->will($this->returnValue($slug));
        $this->assertEquals($slug, $slugConverter->convert($text));
    }