Example #1
0
 /**
  * visitText
  *
  * @param Text
  * @return void
  */
 public function visitText(Text $text)
 {
     $this->printIndentedLine("Text: " . $text->getText());
 }
Example #2
0
 public function testToArray()
 {
     $arr = array('Expression' => 'Text', 'Term' => 'Lukas');
     $this->assertEquals($arr, $this->text->toArray());
 }