/**
  * @testdox getRegexp() returns the regexp associated with this attribute preprocessor
  */
 public function testGetRegexp()
 {
     $ap = new AttributePreprocessor('#(?<x>[a-z])#');
     $this->assertSame('#(?<x>[a-z])#', $ap->getRegexp());
 }