getBillingAddress() public method

Billing address of the potential payer.
Deprecation: Not publicly available
public getBillingAddress ( ) : Address
return Address
 /**
  * @depends testSerializationDeserialization
  * @param PotentialPayerInfo $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getEmail(), "TestSample");
     $this->assertEquals($obj->getExternalRememberMeId(), "TestSample");
     $this->assertEquals($obj->getAccountNumber(), "TestSample");
     $this->assertEquals($obj->getBillingAddress(), AddressTest::getObject());
 }