printSkipList(index);
// testing the exception in case of wrong parameters
String searchFor = "wedontcareaswetesttheexception";
NodeState node = index.getChildNode(searchFor);
ChildNodeEntry entry = new OrderedChildNodeEntry(
searchFor, node);
ChildNodeEntry[] wl = new ChildNodeEntry[0];
ChildNodeEntry item = null;
ChildNodeEntry lane0, lane1, lane2, lane3;
try {
item = store.seek(index,
new OrderedContentMirrorStoreStrategy.PredicateEquals(searchFor), wl);
fail("With a wrong size for the lane it should have raised an exception");