public void testNonMatching() throws Exception
{
JsonNode root = _buildTree();
assertNull(root.findValue("boogaboo"));
assertNull(root.findParent("boogaboo"));
JsonNode n = root.findPath("boogaboo");
assertNotNull(n);
assertTrue(n.isMissingNode());
assertTrue(root.findValues("boogaboo").isEmpty());