We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a55ed53 commit 21a4ad8Copy full SHA for 21a4ad8
src/test/java/com/jsoniter/any/TestArray.java
@@ -72,4 +72,9 @@ public void test_equals_and_hashcode() {
72
assertEquals(obj1, obj2);
73
assertEquals(obj1.hashCode(), obj2.hashCode());
74
}
75
+
76
+ public void test_null() {
77
+ Any x = JsonIterator.deserialize("{\"test\":null}");
78
+ assertFalse(x.get("test").iterator().hasNext());
79
+ }
80
0 commit comments