assertNotNull($obj); $this->assertNotNull($obj->getCreditCardId()); $this->assertNotNull($obj->getPayerId()); $this->assertNotNull($obj->getLast4()); $this->assertNotNull($obj->getType()); $this->assertNotNull($obj->getExpireMonth()); $this->assertNotNull($obj->getExpireYear()); $this->assertEquals(self::getJson(), $obj->toJson()); return $obj; } /** * @depends testSerializationDeserialization * @param CreditCardToken $obj */ public function testGetters($obj) { $this->assertEquals($obj->getCreditCardId(), "TestSample"); $this->assertEquals($obj->getPayerId(), "TestSample"); $this->assertEquals($obj->getLast4(), "TestSample"); $this->assertEquals($obj->getType(), "TestSample"); $this->assertEquals($obj->getExpireMonth(), 123); $this->assertEquals($obj->getExpireYear(), 123); } }