Ejemplo n.º 1
0
 public function testMatchesAreReturned()
 {
     $this->rule->setExpression('/catch(22)/');
     list($match, $matches) = $this->rule->matches('catch22');
     $this->assertTrue($match);
     $this->assertEquals(['catch22', '22'], $matches);
 }