Added a test that appends 2 string

This commit is contained in:
Benoît Blanchon
2014-06-26 12:56:30 +02:00
parent 55487ad668
commit ca99749f28

View File

@ -35,6 +35,13 @@ namespace JsonGeneratorTests
assertResultIs("ABCD");
}
TEST_METHOD(AppendOneTwoStrings)
{
append("ABCD");
append("EFGH");
assertResultIs("ABCDEFGH");
}
TEST_METHOD(AppendSpecialChars)
{
append("\\\"\/\b\f\n\r");