* @throws Exception
*/
public void testSubSubChildPathName() throws Exception
{
VFSContext context = getVFSContext("complex");
VirtualFileHandler root = context.getRoot();
VirtualFileHandler child = context.findChild(root, "subfolder/subsubfolder/subsubchild");
assertEquals("subfolder/subsubfolder/subsubchild", child.getPathName());
VirtualFileHandler parent = context.findChild(root, "subfolder/subsubfolder");
List<VirtualFileHandler> children = parent.getChildren(false);
// Filter out an .svn stuff since this is run from the source tree
Iterator<VirtualFileHandler> iter = children.iterator();
while( iter.hasNext() )
{
child = iter.next();