TreePath p4 = base
.createChildPath(fileHasNoParent.getProject())
.createChildPath(fileHasNoParent);
// A new data node with no files:
ILaunchData dataNode2 = mock(ILaunchData.class);
given(dataNode2.get(ILaunchData.COUNT)).willReturn(count);
given(dataNode2.get(ILaunchData.DATE)).willReturn(date);
given(dataNode2.get(ILaunchData.DURATION)).willReturn(duration);
given(dataNode2.get(ILaunchData.LAUNCH_CONFIG)).willReturn(configDes);
given(dataNode2.get(ILaunchData.WORKSPACE)).willReturn(ws);
given(dataNode2.get(ILaunchData.FILES)).willReturn(
Collections.<IFile> emptySet());
// Paths for the new data node:
TreePath p5 = base.createChildPath(count);
TreePath p6 = base.createChildPath(duration);