RedUNIT\Base\Utf8::testUTF8 PHP Method

testUTF8() public method

Test UTF8 handling.
public testUTF8 ( ) : void
return void
    public function testUTF8()
    {
        $str = '𠜎ὃ𠻗𠻹𠻺𠼭𠼮𠽌𠾴𠾼𠿪𡁜';
        $bean = R::dispense('bean');
        $bean->bla = $str;
        R::store($bean);
        $bean = R::load('bean', $bean->id);
        asrt($bean->bla, $str);
        pass();
    }