PayPal\Test\Api\PaymentCardTest::testGetters PHP Method

testGetters() public method

public testGetters ( PaymentCard $obj )
$obj PayPal\Api\PaymentCard
    public function testGetters($obj)
    {
        $this->assertEquals($obj->getId(), "TestSample");
        $this->assertEquals($obj->getNumber(), "TestSample");
        $this->assertEquals($obj->getType(), "TestSample");
        $this->assertEquals($obj->getExpireMonth(), "TestSample");
        $this->assertEquals($obj->getExpireYear(), "TestSample");
        $this->assertEquals($obj->getStartMonth(), "TestSample");
        $this->assertEquals($obj->getStartYear(), "TestSample");
        $this->assertEquals($obj->getCvv2(), "TestSample");
        $this->assertEquals($obj->getFirstName(), "TestSample");
        $this->assertEquals($obj->getLastName(), "TestSample");
        $this->assertEquals($obj->getBillingCountry(), "TestSample");
        $this->assertEquals($obj->getBillingAddress(), AddressTest::getObject());
        $this->assertEquals($obj->getExternalCustomerId(), "TestSample");
        $this->assertEquals($obj->getStatus(), "TestSample");
        $this->assertEquals($obj->getCardProductClass(), "TestSample");
        $this->assertEquals($obj->getValidUntil(), "TestSample");
        $this->assertEquals($obj->getIssueNumber(), "TestSample");
        $this->assertEquals($obj->getLinks(), LinksTest::getObject());
    }