TODO
<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
}
]
}
{ "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
}
]
}