assertNotNull($obj); $this->assertNotNull($obj->getName()); $this->assertNotNull($obj->getDebugId()); $this->assertNotNull($obj->getMessage()); $this->assertNotNull($obj->getInformationLink()); $this->assertNotNull($obj->getDetails()); $this->assertNotNull($obj->getLinks()); $this->assertEquals(self::getJson(), $obj->toJson()); return $obj; } /** * @depends testSerializationDeserialization * @param Error $obj */ public function testGetters($obj) { $this->assertEquals($obj->getName(), "TestSample"); $this->assertEquals($obj->getDebugId(), "TestSample"); $this->assertEquals($obj->getMessage(), "TestSample"); $this->assertEquals($obj->getInformationLink(), "TestSample"); $this->assertEquals($obj->getDetails(), ErrorDetailsTest::getObject()); $this->assertEquals($obj->getLinks(), LinksTest::getObject()); } }