mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 11:33:17 +00:00
14 lines
418 B
PHP
14 lines
418 B
PHP
<?php
|
|
|
|
class thesaurusTest extends PhraseanetPHPUnitAbstract
|
|
{
|
|
|
|
public function testXquery_escape()
|
|
{
|
|
$string = 'Eléphant ';
|
|
$this->assertEquals($string, thesaurus::xquery_escape($string));
|
|
$string = '&é"\'(-è_ çà)=ù*!:;,?./§%µ+°0987654321';
|
|
$this->assertEquals('&é"'(-è_ çà)=ù*!:;,?./§%µ+°0987654321', thesaurus::xquery_escape($string));
|
|
}
|
|
}
|