Пример #1
0
 /**
  * Checks if strtotitle() works with unicode strings
  *
  * @test
  */
 public function strtotitleWorksWithUnicodeStrings()
 {
     $testString = ' öl Ist nicht das GLEICHE wie øl.';
     $expectedString = ' Öl Ist Nicht Das Gleiche Wie Øl.';
     $this->assertEquals($expectedString, \TYPO3\FLOW3\Utility\Unicode\Functions::strtotitle($testString), 'strtotitle() did not return the expected string for the unicode test.');
 }