public function testDkShouldNotOutputState()
 {
     $address = array('city' => 'city', 'subdivision' => 'state', 'postalCode' => 'zipcode', 'countryCode' => 'DK');
     $expected = array('zipcode city');
     $this->assertSame($expected, $this->af->format($address));
 }