Added a test that adds a string with a backslash in it

This commit is contained in:
Benoît Blanchon
2014-06-25 13:55:18 +02:00
parent 45dfdbd5e4
commit 6b61617133
2 changed files with 31 additions and 6 deletions

View File

@ -37,6 +37,13 @@ namespace JsonGeneratorTests
AssertJsonIs("[\"\\\"\"]");
}
TEST_METHOD(AddOneStringContainingBackslash)
{
arr.add("\\");
AssertJsonIs("[\"\\\\\"]");
}
TEST_METHOD(AddTwoStrings)
{
arr.add("hello");