Beispiel #1
0
 /**
  * @test
  */
 public function it_can_access_mecab_parseToString_method()
 {
     $results = self::$phpmecab->parseToString('美味しい');
     $this->assertContains('形容詞,自立,*,*,形容詞・イ段,基本形,美味しい,オイシイ,オイシイ', $results);
 }
 /**
  * @test
  */
 public function it_can_get_the_surface()
 {
     $node = self::$phpmecab->parseToNode('眠たいです。');
     $node = $node->getNext();
     $this->assertEquals('眠たい', $node->getSurface());
 }