Ejemplo n.º 1
0
 /**
  * @test
  * @expectedException \LitGroup\Json\Exception\JsonException
  * @expectedExceptionCode \JSON_ERROR_DEPTH
  */
 public function testMaxDepthException()
 {
     $this->config->setMaxDepth(1);
     // Value with depth > 1
     $json = '{"sub_map": {}}';
     $this->decoder->decode($json);
 }