Beispiel #1
0
 /**
  * @testdox Get expression data
  */
 public function testGetExpressionData()
 {
     $match = new Match('foo');
     $this->assertEquals([[$match->getSpecification(), ['foo'], [Match::TYPE_VALUE]]], $match->getExpressionData());
 }
Beispiel #2
0
 /**
  * @testdox Get expression data
  */
 public function testGetExpressionData()
 {
     $match = new Match('foo');
     $this->assertEquals(array(array($match->getSpecification(), array('foo'), array(Match::TYPE_VALUE))), $match->getExpressionData());
 }