assertNotNull($obj); $this->assertNotNull($obj->getPayments()); $this->assertNotNull($obj->getCount()); $this->assertNotNull($obj->getNextId()); $this->assertEquals(self::getJson(), $obj->toJson()); return $obj; } /** * @depends testSerializationDeserialization * @param PaymentHistory $obj */ public function testGetters($obj) { $this->assertEquals($obj->getPayments(), PaymentTest::getObject()); $this->assertEquals($obj->getCount(), 123); $this->assertEquals($obj->getNextId(), "TestSample"); } }