public function testGetSetStoreFilter()
 {
     $product = new \Magento\Framework\DataObject();
     $this->assertNull($this->_model->getStoreFilter($product));
     $store = new \StdClass();
     $this->_model->setStoreFilter($store, $product);
     $this->assertSame($store, $this->_model->getStoreFilter($product));
 }