assertNotNull($obj); $this->assertNotNull($obj->getEmail()); $this->assertNotNull($obj->getMerchantId()); $this->assertEquals(self::getJson(), $obj->toJson()); return $obj; } /** * @depends testSerializationDeserialization * @param Payee $obj */ public function testGetters($obj) { $this->assertEquals($obj->getEmail(), "TestSample"); $this->assertEquals($obj->getMerchantId(), "TestSample"); } }