/**
  * @covers BinaryBeast::country
  */
 public function testCountry()
 {
     $this->assertInstanceOf('BBCountry', $this->object->country, '$this->object->country did not return a new BBCountry');
     $this->assertInstanceOf('BBCountry', $this->object->country(), '$this->object->country() did not return a new BBCountry');
 }