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

testExtractKanaWithLengthEqualsOneAndYoonTrue() public method

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