/**
  * @return void
  */
 public function testGetStoreIds()
 {
     $storeIds = [1];
     $this->assertEquals(null, $this->collection->getStoreIds());
     $this->collection->setStoreIds($storeIds);
     $this->assertEquals($storeIds, $this->collection->getStoreIds());
 }