JpnForPhp\Tests\Helper\HelperTest::testExtractHiraganaWhenMixedCharacters PHP Method

testExtractHiraganaWhenMixedCharacters() public method

    public function testExtractHiraganaWhenMixedCharacters()
    {
        $result = Helper::extractHiragana($this->mixCharacters);
        $this->assertSame(array('は', 'にいます'), $result);
    }
HelperTest