Example #1
0
 public function testSetAndGetRegexFlagsWithArray()
 {
     $this->query->setRegexFlags(array('case_insensitive', 'comments'));
     $this->assertEquals(array('case_insensitive', 'comments'), $this->query->getRegexFlags());
 }