Example #1
0
 public function testSetTags()
 {
     $this->query->addTags(array('t1', 't2'));
     $this->query->setTags(array('t3', 't4'));
     $this->assertEquals(array('t3', 't4'), $this->query->getTags());
 }