コード例 #1
0
ファイル: FacetTest.php プロジェクト: starsw001/solarium
 public function testSetExcludes()
 {
     $this->facet->addExcludes(array('e1', 'e2'));
     $this->facet->setExcludes(array('e3', 'e4'));
     $this->assertEquals(array('e3', 'e4'), $this->facet->getExcludes());
 }