86878889909192
return null; } @Override protected TailNode getInstance(INode content) { return new TailNode(content); }
919293949596979899
return new TailNode(content); } @Override public void testGetChildren() { TailNode bN = getInstance(getA(0)); assertTrue(bN.getChildren() != null); assertTrue(bN.getChildren().size() == 1); }
9899100101102103104105106107108109
assertTrue(bN.getChildren().size() == 1); } @Override public void testClone() { TailNode n1 = getInstance(getA(0)); TailNode n2 = null; try { n2 = (TailNode) n1.clone(); } catch (CloneNotSupportedException e) { fail(e.getMessage()); }