Test normalized utf8 string according to unicode.org output
This commit is contained in:
parent
62a7034ab8
commit
806eaf5c9d
|
@ -194,7 +194,13 @@ class BaseTest extends PHPUnit_Framework_TestCase
|
||||||
$this->assertTrue (Base::checkDatabaseAvailability ());
|
$this->assertTrue (Base::checkDatabaseAvailability ());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Test normalized utf8 string according to unicode.org output
|
||||||
|
more here :
|
||||||
|
http://unicode.org/cldr/utility/transform.jsp?a=Latin-ASCII&b=%C3%80%C3%81%C3%82%C3%83%C3%84%C3%85%C3%87%C3%88%C3%89%C3%8A%C3%8B%C3%8C%C3%8D%C3%8E%C3%8F%C5%92%C3%92%C3%93%C3%94%C3%95%C3%96%C3%99%C3%9A%C3%9B%C3%9C%C3%9D%C3%A0%C3%A1%C3%A2%C3%A3%C3%A4%C3%A5%C3%A7%C3%A8%C3%A9%C3%AA%C3%AB%C3%AC%C3%AD%C3%AE%C3%AF%C5%93%C3%B0%C3%B2%C3%B3%C3%B4%C3%B5%C3%B6%C3%B9%C3%BA%C3%BB%C3%BC%C3%BD%C3%BF%C3%B1
|
||||||
|
*/
|
||||||
public function testNormalizeUtf8String () {
|
public function testNormalizeUtf8String () {
|
||||||
$this->assertEquals ("AAAAAEACEEEEIIIIOEOOOOOEUUUUEYaaaaaeaceeeeiiiioedoooooeuuuueyyuny", normalizeUtf8String ("ÀÁÂÃÄÅÇÈÉÊËÌÍÎÏŒÒÓÔÕÖÙÚÛÜÝàáâãäåçèéêëìíîïœðòóôõöùúûüýÿñ"));
|
$this->assertEquals ("AAAAAACEEEEIIIIOEOOOOOUUUUYaaaaaaceeeeiiiioedooooouuuuyyn",
|
||||||
|
normalizeUtf8String ("ÀÁÂÃÄÅÇÈÉÊËÌÍÎÏŒÒÓÔÕÖÙÚÛÜÝàáâãäåçèéêëìíîïœðòóôõöùúûüýÿñ"));
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue