assertNotNull($obj); $this->assertNotNull($obj->getPayerId()); $this->assertNotNull($obj->getCarrierAccountId()); $this->assertNotNull($obj->getTransactions()); $this->assertEquals(self::getJson(), $obj->toJson()); return $obj; } /** * @depends testSerializationDeserialization * @param PaymentExecution $obj */ public function testGetters($obj) { $this->assertEquals($obj->getPayerId(), "TestSample"); $this->assertEquals($obj->getCarrierAccountId(), "TestSample"); $this->assertEquals($obj->getTransactions(), array(TransactionTest::getObject())); } }