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