Ejemplo n.º 1
0
 /**
  * Test...
  *
  * @param   string  $string  @todo
  * @param   string  $expect  @todo
  *
  * @return  array
  *
  * @covers        Windwalker\String\Utf8String::strtolower
  * @dataProvider  seedTestStrtolower
  * @since         1.0
  */
 public function testStrtolower($string, $expect)
 {
     $actual = Utf8String::strtolower($string);
     $this->assertEquals($expect, $actual);
 }