assertNotNull($obj); $this->assertNotNull($obj->getClearingTime()); $this->assertNotNull($obj->getPaymentHoldDate()); $this->assertNotNull($obj->getPaymentDebitDate()); $this->assertNotNull($obj->getProcessingType()); $this->assertEquals(self::getJson(), $obj->toJson()); return $obj; } /** * @depends testSerializationDeserialization * @param FundingDetail $obj */ public function testGetters($obj) { $this->assertEquals($obj->getClearingTime(), "TestSample"); $this->assertEquals($obj->getPaymentHoldDate(), "TestSample"); $this->assertEquals($obj->getPaymentDebitDate(), "TestSample"); $this->assertEquals($obj->getProcessingType(), "TestSample"); } }