コード例 #1
0
ファイル: ParserTest.php プロジェクト: zircote/expressive
 public function testSetExpression()
 {
     $this->parser->setExpression('3+3');
     $expected = (string) 6;
     $this->assertEquals($expected, (string) $this->parser);
 }