We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 583dc3d commit 3ddc068Copy full SHA for 3ddc068
tests/SchemaStorageTest.php
@@ -254,4 +254,18 @@ private function getInvalidSchema()
254
)
255
);
256
}
257
+
258
+ public function testGetUriRetriever()
259
+ {
260
+ $s = new SchemaStorage();
261
+ $s->addSchema('http://json-schema.org/draft-04/schema#');
262
+ $this->assertInstanceOf('\JsonSchema\Uri\UriRetriever', $s->getUriRetriever());
263
+ }
264
265
+ public function testGetUriResolver()
266
267
268
269
+ $this->assertInstanceOf('\JsonSchema\Uri\UriResolver', $s->getUriResolver());
270
271
0 commit comments