/**
  * Tests the parent::getCountryId() use case where CountryId has not been set and the 'country_id'
  * attribute code has been set on the block.
  */
 public function testGetCountryIdParentNotNullData()
 {
     $this->_block->setData('country_id', self::COUNTRY_ID);
     $this->assertEquals(self::COUNTRY_ID, $this->_block->getCountryId());
 }