public function __construct(CountryInterface $country, SubdivisionInterface $state) { parent::__construct($country); $this->state = $state; }
public function testGetLocation() { $this->assertEquals('BR', $this->location->getLocation()); }