json-schema/tests/Constraints/SelfDefinedSchemaTest.php
Mirosław Filip 346b3218dd Bump json-schema/JSON-Schema-Test-Suite to 1.2.0. Add data set
description for failing tests. Flatten directory structure

Use "test.json / suite description / test case description" notation in data provider to allow a readable test output

Skip Draft3Test / Draft4Test tests which are not passing

Add some comment to skipped tests
2016-05-09 23:42:42 +02:00

64 lines
1.6 KiB
PHP

<?php
/*
* This file is part of the JsonSchema package.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace JsonSchema\Tests\Constraints;
class SelfDefinedSchemaTest extends BaseTestCase
{
public function getInvalidTests()
{
return array(
array(
'{
"$schema": {
"properties": {
"name": {
"type": "string"
},
"age" : {
"type": "integer",
"maximum": 25
}
}
},
"name" : "John Doe",
"age" : 30,
"type" : "object"
}',
''
)
);
}
public function getValidTests()
{
return array(
array(
'{
"$schema": {
"properties": {
"name": {
"type": "string"
},
"age" : {
"type": "integer",
"maximum": 125
}
}
},
"name" : "John Doe",
"age" : 30,
"type" : "object"
}',
''
)
);
}
}