public function testEitherOr()
 {
     $regEx = $this->r->eitherFind("p")->orFind("q")->getRegExp();
     $this->assertTrue($regEx->matches("p"));
     $this->assertTrue($regEx->matches("q"));
     $this->assertFalse($regEx->matches("r"));
 }