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

testExtractHiraganaWithLengthEqualsOneAndYoonTrue() public method

    public function testExtractHiraganaWithLengthEqualsOneAndYoonTrue()
    {
        $result = Helper::extractHiragana('じゃ、行きましょう', 1, true);
        $this->assertSame(array('じゃ', 'き', 'ま', 'しょ', 'う'), $result);
    }
HelperTest