forked from bblanchon/ArduinoJson
Added a tests of a string with a double quote in it
This commit is contained in:
@ -30,6 +30,13 @@ namespace JsonGeneratorTests
|
||||
AssertJsonIs("[\"hello\"]");
|
||||
}
|
||||
|
||||
TEST_METHOD(AddOneStringContainingDoubleQuote)
|
||||
{
|
||||
arr.add("\"");
|
||||
|
||||
AssertJsonIs("[\"\\\"\"]");
|
||||
}
|
||||
|
||||
TEST_METHOD(AddTwoStrings)
|
||||
{
|
||||
arr.add("hello");
|
||||
|
Reference in New Issue
Block a user