public function testGetSetType()
 {
     $addressType = 'postal';
     $this->address->setType($addressType);
     $this->assertEquals($addressType, $this->address->getType());
 }