Json Pretty Printing

TODO

Json body is pretty printed

When following fixture is executed:
<rest:jsonBody>{ "text":"text","isUgly":   true, "arrayPrimitieves": ["one", 2, 3], "arrayObjects": [{"three": 3}, {"two":2}]  }</rest:jsonBody>
		
Then it should produce following output:
{
  "text": "text",
  "isUgly": true,
  "arrayPrimitieves": [ 
    "one", 
    2, 
    3 
  ],
  "arrayObjects": [ 
    {
      "three": 3
    }, 
    {
      "two": 2
    } 
  ]
}

Json response is pretty printed

Given response body is
{ "text":"text","isUgly":   true, 
"arrayPrimitieves": ["one", 2, 3], 
"arrayObjects": [{"three": 3}, {"two":2}]  }
		
When following fixture is executed:
<rest:jsonResponse>{ "text":"text","isUgly":   true, "arrayPrimitieves": ["one", 2, 3], "arrayObjects": [{"three": 3}, {"two":2}]  }</rest:jsonResponse>
		
Then it should produce following output:
{
  "text": "text",
  "isUgly": true,
  "arrayPrimitieves": [ 
    "one", 
    2, 
    3 
  ],
  "arrayObjects": [ 
    {
      "three": 3
    }, 
    {
      "two": 2
    } 
  ]
}