public function testNormalizeEncoding()
{
$this->specify('The escaper with normalizeEncoding does not return the correct result ', function () {
if (!extension_loaded('mbstring')) {
$this->markTestSkipped('Warning: mbstring extension is not loaded');
}
$escaper = new Escaper();
expect($escaper->normalizeEncoding('Hello'))->equals(mb_convert_encoding('Hello', 'UTF-32', 'UTF-8'));
});
}