Add test for allowDroppedNullPlaceholders (#1648)

diff --git a/src/test_lib_json/main.cpp b/src/test_lib_json/main.cpp
index e207234..5d5b971 100644
--- a/src/test_lib_json/main.cpp
+++ b/src/test_lib_json/main.cpp
@@ -3095,6 +3095,17 @@
   checkParse(R"({ 123 : "abc" })");
 }
 
+JSONTEST_FIXTURE_LOCAL(ReaderTest, allowDroppedNullPlaceholders) {
+  Json::Features features;
+  features.allowDroppedNullPlaceholders_ = true;
+  setFeatures(features);
+  checkParse(R"([1,,2])");
+  JSONTEST_ASSERT_EQUAL(3, root.size());
+  JSONTEST_ASSERT_EQUAL(1, root[0].asInt());
+  JSONTEST_ASSERT(root[1].isNull());
+  JSONTEST_ASSERT_EQUAL(2, root[2].asInt());
+}
+
 struct CharReaderTest : JsonTest::TestCase {};
 
 JSONTEST_FIXTURE_LOCAL(CharReaderTest, parseWithNoErrors) {