diff --git a/JsonGeneratorTests/IntentedPrintTests.cpp b/JsonGeneratorTests/IntentedPrintTests.cpp index b69c946c..60727282 100644 --- a/JsonGeneratorTests/IntentedPrintTests.cpp +++ b/JsonGeneratorTests/IntentedPrintTests.cpp @@ -31,6 +31,13 @@ namespace JsonGeneratorTests outputMustBe("{}"); } + TEST_METHOD(EmptyArray) + { + whenInputIs("[]"); + outputMustBe("[]"); + } + + private: void whenInputIs(const char input[])