Пример #1
0
 /**
  * Test...
  *
  * @param   string  $string  @todo
  * @param   string  $expect  @todo
  *
  * @return  array
  *
  * @covers        Windwalker\String\Utf8String::unicode_to_utf16
  * @dataProvider  seedTestUnicodeToUtf16
  * @since         1.2.0
  */
 public function testUnicodeToUtf16($string, $expect)
 {
     $actual = Utf8String::unicode_to_utf16($string);
     $this->assertEquals($expect, $actual);
 }