JpnForPhp\Tests\Helper\HelperTest::testextractKanaWithLengthEqualsNAndYoonTrue PHP 메소드

testextractKanaWithLengthEqualsNAndYoonTrue() 공개 메소드

    public function testextractKanaWithLengthEqualsNAndYoonTrue()
    {
        $result = Helper::extractKana('ジョオと行きましょう', 3, true);
        $this->assertSame(array('ジョオと', 'きましょ', 'う'), $result);
    }
HelperTest