public function testCollection()
 {
     $collection = $this->_model->getCollection();
     $collection->setStoreId(1);
     $this->assertEquals(1, $collection->getStoreId(), 'Store id setter and getter');
     $collection->addValuesToResult();
     $this->assertContains('variable_value', (string) $collection->getSelect());
 }