assertNotNull($obj); $this->assertNotNull($obj->getLinks()); $this->assertNotNull($obj->getFragmentResolution()); $this->assertNotNull($obj->getReadonly()); $this->assertNotNull($obj->getContentEncoding()); $this->assertNotNull($obj->getPathStart()); $this->assertNotNull($obj->getMediaType()); $this->assertEquals(self::getJson(), $obj->toJson()); return $obj; } /** * @depends testSerializationDeserialization * @param HyperSchema $obj */ public function testGetters($obj) { $this->assertEquals($obj->getLinks(), LinksTest::getObject()); $this->assertEquals($obj->getFragmentResolution(), "TestSample"); $this->assertEquals($obj->getReadonly(), true); $this->assertEquals($obj->getContentEncoding(), "TestSample"); $this->assertEquals($obj->getPathStart(), "TestSample"); $this->assertEquals($obj->getMediaType(), "TestSample"); } }