Exemplo n.º 1
0
 /**
  * Tests successful validation of well-formed JSON Schema.
  * @covers JsonSchemaContent::isValid
  */
 function testValidJsonSchema()
 {
     $content = new JsonSchemaContent(self::VALID_JSON_SCHEMA);
     $this->assertTrue($content->isValid(), 'Valid JSON Schema should be recognized as valid.');
 }