diff --git a/JsonGeneratorTests/Intented_Array_Tests.cpp b/JsonGeneratorTests/Intented_Array_Tests.cpp index b59c4871..d3ad9fd4 100644 --- a/JsonGeneratorTests/Intented_Array_Tests.cpp +++ b/JsonGeneratorTests/Intented_Array_Tests.cpp @@ -34,6 +34,16 @@ namespace JsonGeneratorTests "]"); } + TEST_METHOD(TwoElements) + { + whenInputIs("[1,2]"); + outputMustBe( + "[\n" + " 1,\n" + " 2\n" + "]"); + } + private: void whenInputIs(const char input[])