diff --git a/JsonGeneratorTests/IntentedPrintTests.cpp b/JsonGeneratorTests/IntentedPrintTests.cpp index 662ac5d5..b69c946c 100644 --- a/JsonGeneratorTests/IntentedPrintTests.cpp +++ b/JsonGeneratorTests/IntentedPrintTests.cpp @@ -25,6 +25,12 @@ namespace JsonGeneratorTests outputMustBe(""); } + TEST_METHOD(EmptyObject) + { + whenInputIs("{}"); + outputMustBe("{}"); + } + private: void whenInputIs(const char input[])