assertNull("No children expected", node.getChildren());
}
public void testDefaultPrimaryNodeTypeWithoutEnclosingBracesWithSurroundWhitespace() throws IOException {
String json = " ";
NodeDescription node = this.parse(json);
assertNotNull("Expecting node", node);
assertNull(node.getPrimaryNodeType());
assertNull("No mixins expected", node.getMixinNodeTypes());
assertNull("No properties expected", node.getProperties());
assertNull("No children expected", node.getChildren());
}