Ejemplo n.º 1
0
 /**
  * Tests the tutf8::ord() function.
  * @dataProvider ord_provider
  * @group core.helpers.utf8.ord
  * @test
  */
 public function ord($str, $expected_result)
 {
     $result = utf8::ord($str);
     $this->assertEquals($expected_result, $result);
 }