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

testExtractHiraganaWithLengthEqualsNAndYoonTrue() public method

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