PayPal\Test\Api\BankAccountTest::testSerializationDeserialization PHP Method

testSerializationDeserialization() public method

Tests for Serialization and Deserialization Issues
public testSerializationDeserialization ( ) : BankAccount
return PayPal\Api\BankAccount
    public function testSerializationDeserialization()
    {
        $obj = new BankAccount(self::getJson());
        $this->assertNotNull($obj);
        $this->assertNotNull($obj->getId());
        $this->assertNotNull($obj->getAccountNumber());
        $this->assertNotNull($obj->getAccountNumberType());
        $this->assertNotNull($obj->getRoutingNumber());
        $this->assertNotNull($obj->getAccountType());
        $this->assertNotNull($obj->getAccountName());
        $this->assertNotNull($obj->getCheckType());
        $this->assertNotNull($obj->getAuthType());
        $this->assertNotNull($obj->getAuthCaptureTimestamp());
        $this->assertNotNull($obj->getBankName());
        $this->assertNotNull($obj->getCountryCode());
        $this->assertNotNull($obj->getFirstName());
        $this->assertNotNull($obj->getLastName());
        $this->assertNotNull($obj->getBirthDate());
        $this->assertNotNull($obj->getBillingAddress());
        $this->assertNotNull($obj->getState());
        $this->assertNotNull($obj->getConfirmationStatus());
        $this->assertNotNull($obj->getPayerId());
        $this->assertNotNull($obj->getExternalCustomerId());
        $this->assertNotNull($obj->getMerchantId());
        $this->assertNotNull($obj->getCreateTime());
        $this->assertNotNull($obj->getUpdateTime());
        $this->assertNotNull($obj->getValidUntil());
        $this->assertNotNull($obj->getLinks());
        $this->assertEquals(self::getJson(), $obj->toJson());
        return $obj;
    }