/** * Test... * * @param string $string @todo * @param string $expect @todo * * @return array * * @covers Windwalker\String\Utf8String::ucwords * @dataProvider seedTestUcwords * @since 1.0 */ public function testUcwords($string, $expect) { $actual = Utf8String::ucwords($string); $this->assertEquals($expect, $actual); }