assertNotNull($obj); $this->assertNotNull($obj->getPaymentMethod()); $this->assertNotNull($obj->getStatus()); $this->assertNotNull($obj->getFundingInstruments()); $this->assertNotNull($obj->getFundingOptionId()); $this->assertNotNull($obj->getPayerInfo()); $this->assertEquals(self::getJson(), $obj->toJson()); return $obj; } /** * @depends testSerializationDeserialization * @param Payer $obj */ public function testGetters($obj) { $this->assertEquals($obj->getPaymentMethod(), "TestSample"); $this->assertEquals($obj->getStatus(), "TestSample"); $this->assertEquals($obj->getFundingInstruments(), FundingInstrumentTest::getObject()); $this->assertEquals($obj->getFundingOptionId(), "TestSample"); $this->assertEquals($obj->getPayerInfo(), PayerInfoTest::getObject()); } }