public function testNotAhead()
 {
     $regEx = $this->r->exactly(1)->of("dart")->notAhead($this->r->getNew()->exactly(1)->of("pqr"))->getRegExp();
     $this->assertTrue($regEx->matches("dartlang"));
     $this->assertFalse($regEx->matches("dartpqr"));
 }