diff options
Diffstat (limited to 'src/test/resources')
-rw-r--r-- | src/test/resources/dataWithNormalChar.json (renamed from src/test/resources/WriteDataForCmHandle.json) | 4 | ||||
-rw-r--r-- | src/test/resources/dataWithSpecialChar.json | 8 |
2 files changed, 9 insertions, 3 deletions
diff --git a/src/test/resources/WriteDataForCmHandle.json b/src/test/resources/dataWithNormalChar.json index 8eb19599..31cdf1c5 100644 --- a/src/test/resources/WriteDataForCmHandle.json +++ b/src/test/resources/dataWithNormalChar.json @@ -1,9 +1,7 @@ { "operation": "create", "dataType": "application/json", - "data": { - "some-data": "some-value" - }, + "data": "normal request body", "cmHandleProperties": { "some-property": "some-property-value" } diff --git a/src/test/resources/dataWithSpecialChar.json b/src/test/resources/dataWithSpecialChar.json new file mode 100644 index 00000000..1e7622ee --- /dev/null +++ b/src/test/resources/dataWithSpecialChar.json @@ -0,0 +1,8 @@ +{ + "operation": "create", + "dataType": "application/json", + "data": "data with quote \" and new line \n", + "cmHandleProperties": { + "some-property": "some-property-value" + } +}
\ No newline at end of file |