mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-17 12:32:17 +02:00
Added a test that adds a string with a backslash in it
This commit is contained in:
@ -37,6 +37,13 @@ namespace JsonGeneratorTests
|
||||
AssertJsonIs("[\"\\\"\"]");
|
||||
}
|
||||
|
||||
TEST_METHOD(AddOneStringContainingBackslash)
|
||||
{
|
||||
arr.add("\\");
|
||||
|
||||
AssertJsonIs("[\"\\\\\"]");
|
||||
}
|
||||
|
||||
TEST_METHOD(AddTwoStrings)
|
||||
{
|
||||
arr.add("hello");
|
||||
|
Reference in New Issue
Block a user