public function testGetCountryNames()
 {
     $countries = array('DE' => 'Germany', 'AT' => 'Austria', 'ZZ' => 'Unknown Country', '010' => 'Europe', 110 => 'America');
     $this->reader->expects($this->once())->method('readEntry')->with($this->resDir, 'en', array('Countries'))->will($this->returnValue($countries));
     $sortedCountries = array('AT' => 'Austria', 'DE' => 'Germany');
     $this->assertSame($sortedCountries, $this->bundle->getCountryNames('en'));
 }