
Untitled
By: a guest on
Sep 1st, 2011 | syntax:
Java | size: 0.30 KB | views:
47 | expires: Never
@Test
public void shouldNotMatchAChildsChildrenOnQuery()
{
Node root = new Node(ROOT_NAME)
.createChild(CHILD_1_NAME)
.createChild(CHILD_2_NAME).getRoot();
System.out.println(root.toString(true));
Assert.assertNull(root.get(CHILD_2_NAME));
}