Added a tests of a string with a double quote in it

This commit is contained in:
Benoît Blanchon
2014-06-25 13:47:28 +02:00
parent ca53abdc41
commit dd6fd6f198
4 changed files with 28 additions and 1 deletions

View File

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