Example #1
0
 public function testGetSetStoreFilter()
 {
     $product = new Varien_Object();
     $this->assertNull($this->_model->getStoreFilter($product));
     $store = new StdClass();
     $this->_model->setStoreFilter($store, $product);
     $this->assertSame($store, $this->_model->getStoreFilter($product));
 }